mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-09-03 12:51:29 +02:00
69 lines
2.2 KiB
Plaintext
69 lines
2.2 KiB
Plaintext
# 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"
|