diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2014-02-22 01:03:01 -0500 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2014-02-22 01:03:01 -0500 |
commit | b942fafe021b02d85580985988923db9cca4c7f1 (patch) | |
tree | ae1bb70ab5cee4961a8e3f0eb3564731e3965c53 /libre | |
parent | bb1f08483b701d24050f13cf61a3948ced68944b (diff) | |
download | abslibre-b942fafe021b02d85580985988923db9cca4c7f1.tar.gz abslibre-b942fafe021b02d85580985988923db9cca4c7f1.tar.bz2 abslibre-b942fafe021b02d85580985988923db9cca4c7f1.zip |
update jh, move it from [java] to [libre]
Diffstat (limited to 'libre')
-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 +} |