aboutsummaryrefslogtreecommitdiffstats
path: root/community/java-snappy/APKBUILD
blob: bfb7bb30a29f498ab5bf9ad3c4d6226d061b517b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# Contributor: Jakub Jirutka <jakub@jirutka.cz>
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
pkgname=java-snappy
_pkgname=snappy-java
pkgver=1.1.2.6
_libver=${pkgver%.*}
pkgrel=0
pkgdesc="Snappy compressor/decompressor for Java"
url="https://github.com/xerial/snappy-java"
arch="x86_64 x86"
license="ASL-2.0"
depends="openjdk8-jre-base"
makedepends="bash openjdk8 perl snappy-dev>=$_libver"
subpackages="$pkgname-native"
source="$pkgname-$pkgver.tar.gz::https://github.com/xerial/$_pkgname/archive/$pkgver.tar.gz
	0001-unbundle-snappy.patch
	"
builddir="$srcdir/$_pkgname-$pkgver"

prepare() {
	default_prepare || return 1

	cd "$builddir"

	# Get rid of bundled native binaries.
	rm -r src/main/resources/org/xerial/snappy/native

	# To load libsnappyjava.so from java.library.path.
	cat > src/main/resources/org-xerial-snappy.properties <<-EOF
		org.xerial.snappy.use.systemlib=true
	EOF
}

build() {
	cd "$builddir"

	JAVA_HOME=/usr/lib/jvm/default-jvm \
		make || return 1

	msg "Downloading SBT and then building JAR (this will take few minutes)..."
	./sbt -Dsbt.boot.directory=/tmp/sbt/boot \
		-Dsbt.ivy.home=/tmp/sbt/.ivy2 \
		package
}

package() {
	arch="noarch"
	depends="$depends $pkgname-native"

	install -m644 -D "$builddir"/target/$_pkgname-*.jar \
		"$pkgdir"/usr/share/java/$_pkgname-$pkgver.jar || return 1
	ln -sf $_pkgname-$pkgver.jar "$pkgdir"/usr/share/java/$_pkgname.jar
}

native() {
	local soname="libsnappyjava.so"

	install -m755 -D "$builddir"/target/$soname \
		"$subpkgdir"/usr/lib/$soname.$_libver || return 1
	ln -sf $soname.$_libver "$subpkgdir"/usr/lib/$soname
}

md5sums="8938dc2d64ec7405581faa454bdf8ed2  java-snappy-1.1.2.6.tar.gz
1bf623f419c1103bce8a76ef129e974b  0001-unbundle-snappy.patch"
sha256sums="404fa39e5337f08b5c80b20b45096af805b5abb3ded126ef63e43ba4538e8d6e  java-snappy-1.1.2.6.tar.gz
d624485186c880d7a7ede00b81e70ae345b9f429a218dd49bb85d3a9fb837cfe  0001-unbundle-snappy.patch"
sha512sums="647c7942249fd08d402538da5442bbbbd6a3fc2d6173999253ebcf270e8dea5135a2c702c12ea1f170e3e187f0092270d9d7db28593c438c58a7eb9dd2ca157c  java-snappy-1.1.2.6.tar.gz
23aa84f1bee4f2a419402912e17ee04259f37a41a2eac9a6cc271d7a87899778a196b9bbcced856335bb56ea905bd6448f4ef39da9cbd8c83882506651e13a9c  0001-unbundle-snappy.patch"