# Maintainer: Lucas Werkmeister # TODO try to rip apart the fat jar and improve installation per https://wiki.archlinux.org/index.php/Java_package_guidelines pkgname=apache-jena-fuseki pkgver=5.0.0 pkgrel=1 pkgdesc='SPARQL server built on the Jena Java framework for building Semantic Web and Linked Data applications' arch=('any') url='https://jena.apache.org/' license=('Apache') depends=('java-runtime>=17') # does not depend on apache-jena – included in the fat jar source=( "https://downloads.apache.org/jena/binaries/${pkgname}-${pkgver}.tar.gz" 'fuseki-server' ) sha512sums=( 'c7b9fa452cdec19c50ee08ee191012b26c7b51f1ee5c5143db3047e0545c007599fbc08481fa61df5aef766a796e43262c209fc42578f2e532c0ab0c19dcbc51' 'SKIP' ) 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}/" fuseki-server.jar webapp/ # install our own binary into /usr/bin (ignore the one shipped by upstream) install -D -t "$pkgdir/usr/bin/" ../fuseki-server }