diff options
author | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-03-25 12:45:40 -0300 |
---|---|---|
committer | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-03-25 12:45:40 -0300 |
commit | 27cd560baa49d7eb685a5789cb915c5cdbdaf305 (patch) | |
tree | 03f7fdcdfa62b05dd9793f2809c20d6357c991c0 /libre/jh | |
parent | 88e1da204a82b0e8c0fa1a9e42ecd1b86a08eab8 (diff) | |
parent | c86852f13787f259167b1df6d3762ef78980cad3 (diff) |
Merge branch 'master' of vparabola:abslibre
Diffstat (limited to 'libre/jh')
-rw-r--r-- | libre/jh/PKGBUILD | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/libre/jh/PKGBUILD b/libre/jh/PKGBUILD new file mode 100644 index 000000000..1604b849e --- /dev/null +++ b/libre/jh/PKGBUILD @@ -0,0 +1,30 @@ +# Maintainer: Luke Shumaker <lukeshu@sbcglobal.net> + +pkgname=jh +pkgver=0.5.2 +pkgdesc="Java helpers for PKGBUILDs" +url="https://projects.parabolagnulinux.org/packages/jh.git/" +license=('custom:WTFPL') + +pkgrel=1 +arch=(any) +optdepends=( + "maven: for configurable maven local repository location" + "librelib: for human readable output from jh checksource" +) + +source=("https://projects.parabolagnulinux.org/packages/${pkgname}.git/snapshot/${pkgname}-${pkgver}.tar.bz2") +md5sums=('498fadbf2dffc91c53c9ebe29f8ba8a9') + +build() { + cd "$srcdir/$pkgname-$pkgver" + make +} + +package() { + depends=(xmlstarlet) + + cd "$srcdir/$pkgname-$pkgver" + make install DESTDIR="$pkgdir" + install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING +} |