mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
51 lines
1.3 KiB
Plaintext
51 lines
1.3 KiB
Plaintext
# Contributor: Jakub Jirutka <jakub@jirutka.cz>
|
|
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
|
|
pkgname=java-jffi
|
|
_pkgname=${pkgname#java-}
|
|
pkgver=1.3.11
|
|
_libver=1.2
|
|
pkgrel=0
|
|
pkgdesc="Java Foreign Function Interface"
|
|
url="https://github.com/jnr/jffi"
|
|
# riscv64 blocked by openjdk8
|
|
arch="all !riscv64"
|
|
license="Apache-2.0"
|
|
depends="$pkgname-native=$pkgver-r$pkgrel java-jre-headless"
|
|
makedepends="apache-ant file linux-headers openjdk8 texinfo"
|
|
subpackages="$pkgname-native"
|
|
source="https://github.com/jnr/$_pkgname/archive/$_pkgname-$pkgver.tar.gz"
|
|
builddir="$srcdir/$_pkgname-$_pkgname-$pkgver"
|
|
|
|
# Tests fail on non-x86_64 platforms, they are probably broken.
|
|
# if [ "$CARCH" != x86_64 ]; then
|
|
# options="!check"
|
|
# fi
|
|
# pass locally and in ci but not on builders
|
|
options="!check"
|
|
|
|
build() {
|
|
ant jar
|
|
}
|
|
|
|
check() {
|
|
ant test -v
|
|
}
|
|
|
|
package() {
|
|
install -m644 -D "$builddir"/dist/jffi.jar \
|
|
"$pkgdir"/usr/share/java/$_pkgname-$pkgver.jar
|
|
ln -sf $_pkgname-$pkgver.jar "$pkgdir"/usr/share/java/$_pkgname.jar
|
|
}
|
|
|
|
native() {
|
|
depends=""
|
|
|
|
# Note: jffi expects file named libjffi-x.y.so, not libjffi.so.x.y.
|
|
install -m755 -D "$builddir"/build/jni/libjffi-$_libver.so \
|
|
"$subpkgdir"/usr/lib/libjffi-$_libver.so
|
|
}
|
|
|
|
sha512sums="
|
|
b206e23574d3092f883b1e4065eb494d2f1f934d8fb76f7e7891a52fc3c243dd82058e5ff1dc6a074345160d5d9017075b4e3977df0efa66dc4005e7a09cb00a jffi-1.3.11.tar.gz
|
|
"
|