summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Del Rosario2021-05-13 17:21:31 -0500
committerMichael Del Rosario2021-05-13 17:21:31 -0500
commit90eda4b57612633d13d028b6b533ef5efc20b9d7 (patch)
tree731de3ef326b9334da1278f75fe3f40b01ceda3b
downloadaur-90eda4b57612633d13d028b6b533ef5efc20b9d7.tar.gz
Initial commit
-rw-r--r--.SRCINFO12
-rw-r--r--.gitignore1
-rw-r--r--PKGBUILD13
3 files changed, 26 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..0472d1594a8a
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,12 @@
+pkgbase = grype
+ pkgdesc = A vulnerability scanner for container images and filesystems.
+ pkgver = 0.11.0
+ pkgrel = 1
+ url = https://github.com/anchore/grype
+ arch = x86_64
+ license = APACHE
+ source = https://github.com/anchore/grype/releases/download/v0.11.0/grype_0.11.0_linux_amd64.tar.gz
+ md5sums = 4b90b8e1b60d506b56cc595c71eff68f
+
+pkgname = grype
+
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..e8310385c56d
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+src \ No newline at end of file
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..6dd9b2479403
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,13 @@
+# Maintainer: Michael Del Rosario <m@delrosariomichael.com>
+pkgname='grype'
+pkgver=0.11.0
+pkgrel=1
+pkgdesc='A vulnerability scanner for container images and filesystems.'
+url='https://github.com/anchore/grype'
+arch=('x86_64')
+license=('APACHE')
+source=("https://github.com/anchore/grype/releases/download/v${pkgver}/grype_${pkgver}_linux_amd64.tar.gz")
+md5sums=('4b90b8e1b60d506b56cc595c71eff68f')
+package() {
+ install -Dm755 "$srcdir/grype_${pkgver}_linux_amd64" "${pkgdir}/usr/local/bin/${pkgname}"
+} \ No newline at end of file