blob: 7f14711824be38672950272b860976ab0bed12db (
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
|
# Contributor: Sean Summers <seansummers@gmail.com>
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
# TODO: Patch for LibreSSL.
pkgname=tomcat-native
pkgver=1.2.16
pkgrel=0
pkgdesc="Native resources optional component for Apache Tomcat"
url="http://tomcat.apache.org/native-doc/"
arch="all"
license="Apache-2.0"
depends="openjdk8-jre-base"
makedepends="apr-dev chrpath openjdk8 openssl-dev"
subpackages="$pkgname-dev"
source="http://www-eu.apache.org/dist/tomcat/tomcat-connectors/native/$pkgver/source/$pkgname-$pkgver-src.tar.gz"
builddir="$srcdir/$pkgname-$pkgver-src/native"
build() {
cd "$builddir"
./configure --prefix=/usr \
--with-apr=/usr/bin/apr-1-config \
--with-java-home=/usr/lib/jvm/default-jvm \
--with-ssl=yes
make
}
package() {
cd "$builddir"
make DESTDIR="$pkgdir" install
# Remove redundant rpath.
chrpath --delete "$pkgdir"/usr/lib/libtcnative-1.so
rm -f "$pkgdir"/usr/lib/libtcnative-1.la
rmdir "$pkgdir"/usr/bin
}
dev() {
default_dev
mv "$subpkgdir"/usr/lib/libtcnative-1.so "$pkgdir"/usr/lib/
}
sha512sums="0345f85fbab406f25c25c8fc06bf55f3d166fa14bfcf542bddb5dc5db4c8c7bd0c5b71603d85261d71152ead3023b112144f2ffa5ede14ae8595013f79c802aa tomcat-native-1.2.16-src.tar.gz"
|