aboutsummaryrefslogtreecommitdiffstats
path: root/community/java-netty-transport-native/APKBUILD
blob: bbf75fdc6bf698ffae50888ecbf1d0bd55945531 (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
# Contributor: Jakub Jirutka <jakub@jirutka.cz>
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
pkgname=java-netty-transport-native
_jarname=netty-transport-native-epoll
pkgver=4.1.109
_pkgver="$pkgver.Final"
pkgrel=0
pkgdesc="Native Netty transport for Linux"
url="https://netty.io"
# armhf,armv7,ppc64le,s390x,x86: fails to build due to missing JAR
# riscv64: blocked by java-jdk
arch="all !armhf !armv7 !ppc64le !riscv64 !s390x !x86"
license="Apache-2.0"
depends="java-jre-headless"
makedepends="
	autoconf
	automake
	java-jdk
	libtool
	linux-headers
	maven
	"
source="https://github.com/netty/netty/archive/netty-$_pkgver/netty-$pkgver.tar.gz"
builddir="$srcdir/netty-netty-$_pkgver/transport-native-epoll"
# net: fetches dependencies from Maven repos
# !check: EpollDatagramUnicast tests fail (TODO)
options="net !check"

# NOTE: Maven 3 dropped support for the M2_HOME variable.
export MAVEN_ARGS="--batch-mode -Dcheckstyle.skip=true -Duser.home=$srcdir/.home"

build() {
	export CFLAGS="${CFLAGS/-Os/-O2}"
	export CPPFLAGS="${CPPFLAGS/-Os/-O2}"

	mvn package -DskipTests
}

check() {
	mvn test
}

# NOTE: netty-transport-native-epoll contains only the binary, classes
#   are in a separate package (JAR) transport-classes-epoll. It first attempts
#   to load the binary from the 'java.library.path' (/usr/lib).
package() {
	mkdir -p "$pkgdir"/usr/lib
	cp -P target/native-build/target/lib/*.so "$pkgdir"/usr/lib/
}

sha512sums="
feee290d1bf182f850446f016bd564fc0ca6a622d11c1fa9ae8bf7de6d70542bb52366704e85e98c00d2f9d2fd17ae5c699db2722f5764108f60a0e7c487bdd3  netty-4.1.109.tar.gz
"