summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorVarakh2023-10-21 09:47:03 +0200
committerVarakh2023-10-21 09:47:03 +0200
commitdc1a503e0f5f486f1ce5984900fb61008cc01910 (patch)
tree4e050d037fad5253d23b270fb35aff43c6f63396
parent777844466f2dc70ba21ecbb2df2f42d0c741bafe (diff)
downloadaur-dc1a503e0f5f486f1ce5984900fb61008cc01910.tar.gz
Move binary to /usr/bin instead of /usr/local/bin
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD4
2 files changed, 3 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index c1f79c2519ff..e0afe475c545 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = grype-bin
pkgdesc = A vulnerability scanner for container images and filesystems.
pkgver = 0.72.0
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/anchore/grype
arch = x86_64
license = Apache
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"
}