summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorVarakh2023-10-21 09:47:03 +0200
committerVarakh2023-10-21 09:47:03 +0200
commitdc1a503e0f5f486f1ce5984900fb61008cc01910 (patch)
tree4e050d037fad5253d23b270fb35aff43c6f63396 /PKGBUILD
parent777844466f2dc70ba21ecbb2df2f42d0c741bafe (diff)
downloadaur-dc1a503e0f5f486f1ce5984900fb61008cc01910.tar.gz
Move binary to /usr/bin instead of /usr/local/bin
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD4
1 files changed, 2 insertions, 2 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 16cee4f085b6..db5679eea28a 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
# Ex-Maintainer: Ray Del Rosario <michael@raydelrosario.com>
pkgname='grype-bin'
pkgver=0.72.0
-pkgrel=1
+pkgrel=2
pkgdesc='A vulnerability scanner for container images and filesystems.'
url='https://github.com/anchore/grype'
arch=('x86_64')
@@ -10,5 +10,5 @@ license=('Apache')
source=("https://github.com/anchore/grype/releases/download/v${pkgver}/grype_${pkgver}_linux_amd64.tar.gz")
sha256sums=('136eeb2525aafed3427885f6c6f9974e6e365030bb898dbc7482370fcf256b76')
package() {
- install -Dm755 "$srcdir/grype" "${pkgdir}/usr/local/bin/grype"
+ install -Dm755 "$srcdir/grype" "${pkgdir}/usr/bin/grype"
}