mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-26 08:51:25 +02:00
63 lines
1.9 KiB
Plaintext
63 lines
1.9 KiB
Plaintext
# Contributor: Jakub Jirutka <jakub@jirutka.cz>
|
|
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
|
|
pkgname=java-snappy
|
|
_pkgname=snappy-java
|
|
pkgver=1.1.7.2
|
|
_libver=${pkgver%.*}
|
|
pkgrel=0
|
|
pkgdesc="Snappy compressor/decompressor for Java"
|
|
url="https://github.com/xerial/snappy-java"
|
|
arch="all"
|
|
license="Apache-2.0"
|
|
options="!check" # Tests does not work correctly
|
|
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
|
|
unbundle-snappy.patch
|
|
"
|
|
builddir="$srcdir/$_pkgname-$pkgver"
|
|
|
|
prepare() {
|
|
default_prepare
|
|
|
|
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
|
|
|
|
msg "Downloading SBT and then building JAR (this will take few minutes)..."
|
|
JVM_OPTS="-Xms256m -Xmx256m -Xss2m" \
|
|
./sbt -no-share -sbt-launch-dir project/.sbt/launchers package
|
|
}
|
|
|
|
package() {
|
|
depends="$depends $pkgname-native"
|
|
|
|
install -m644 -D "$builddir"/target/$_pkgname-*.jar \
|
|
"$pkgdir"/usr/share/java/$_pkgname-$pkgver.jar
|
|
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
|
|
ln -sf $soname.$_libver "$subpkgdir"/usr/lib/$soname
|
|
}
|
|
|
|
sha512sums="d8df422be6b1b2591d87c55ca5b1d160f22abdb398f86841f7d9a712672f82b5bbe6054cf325f687932292b98a1f714a3b2455c6578fd2faee26abd06eb1c8b9 java-snappy-1.1.7.2.tar.gz
|
|
3533a62aefa0f2b9943fa7a360c38c468eb6917fc709ad8ae3de597e91ae8ebe935697a24a7fdbba6ecebe2e416806e35db66cce42570c62f2c880c59c0c6e62 unbundle-snappy.patch"
|