blob: eb65b1133542e4a078103938bbea7a01cf1b0a08 (
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
|
# Maintainer: Lucas Werkmeister <mail@lucaswerkmeister.de>
# TODO improve installation per https://wiki.archlinux.org/index.php/Java_package_guidelines – several of the dependencies have their own packages
pkgname=apache-jena
pkgver=5.2.0
pkgrel=1
pkgdesc='Java framework for building Semantic Web and Linked Data applications'
arch=('any')
url='https://jena.apache.org/'
license=('Apache')
depends=('java-runtime>=17')
source=("https://downloads.apache.org/${pkgname/apache-/}/binaries/${pkgname}-${pkgver}.tar.gz")
sha512sums=('9a66044573ca269c0a9a1191fe7a8e1925f2d77e2e0bdadddd68616a1bafed1d9819c0b2988dd03614ec778a3882ccb091d825976fc0837406916f9f001b701c')
package() {
cd "$pkgname-$pkgver"
mkdir -p "$pkgdir/opt/${pkgname}/" "$pkgdir/usr/bin/"
# install most files in /opt (yes, I know, I know :/ see TODO at the top)
cp -r -t "$pkgdir/opt/${pkgname}/" bin/ lib/ LICENSE NOTICE README log4j2.properties
# symlink binaries into /usr/bin
cd bin
for bin in *; do
# some binaries conflict with other packages, so install them all with a "jena." prefix
ln -s "../../opt/${pkgname}/bin/${bin}" "$pkgdir/usr/bin/jena.${bin}"
case "$bin" in
schemagen)
# conflicts with a different binary by java-environment-common
;;
tdbbackup|tdbdump)
# conflicts with different binaries by tdb
;;
*)
# no conflicts, also install without "jena." prefix
ln -s "jena.${bin}" "$pkgdir/usr/bin/${bin}"
;;
esac
done
}
|