diff options
author | Oliver Gondža | 2020-03-28 18:15:40 +0100 |
---|---|---|
committer | Oliver Gondža | 2020-03-28 18:15:40 +0100 |
commit | e2e5e5ea3fc9bdb1059d90a718a257aacf5193fa (patch) | |
tree | 38842ad2cf3eb2937d294b5f2f31c9db6eda3f9c | |
parent | f418fcbdb425442f616309db8684bb098132415d (diff) | |
download | aur-dumpling.tar.gz |
Fix installation
-rw-r--r-- | .SRCINFO | 2 | ||||
-rw-r--r-- | PKGBUILD | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -1,7 +1,7 @@ pkgbase = dumpling pkgdesc = Automation friendly java threaddump analyzer pkgver = 2.4 - pkgrel = 1 + pkgrel = 2 epoch = 0 url = https://olivergondza.github.io/dumpling/ arch = any @@ -2,7 +2,7 @@ # Contributor: Oliver Gondža <ogondza@gmail.com> pkgname=dumpling pkgver=2.4 -pkgrel=1 +pkgrel=2 epoch=0 pkgdesc="Automation friendly java threaddump analyzer" arch=('any') @@ -29,5 +29,5 @@ validpgpkeys=() package() { install -D -m 644 "dumpling-cli-$pkgver-shaded.jar" "$pkgdir/var/lib/dumpling/dumpling.jar" - install -D -m 755 "dumpling" "$pkgdir/usr/bin/dumpling" + install -D -m 755 "../dumpling" "$pkgdir/usr/bin/dumpling" } |