summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorIrvine2017-05-10 14:11:20 +0100
committerIrvine2017-05-10 14:11:20 +0100
commit9d879faa421fd94c6f00adfc0cf6523a385eb883 (patch)
treed600df3bbbd41d8cff6c5f3cca49b112690b798a
downloadaur-9d879faa421fd94c6f00adfc0cf6523a385eb883.tar.gz
1st release of archaudit-report
-rw-r--r--.SRCINFO14
-rw-r--r--PKGBUILD16
2 files changed, 30 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..1ddb74975155
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,14 @@
+pkgbase = archaudit-report
+ pkgdesc = Report of applications with inherited security advisories
+ pkgver = 1.0
+ pkgrel = 1
+ url = https://github.com/Irvinehimself/ArchAudit-Report
+ arch = any
+ license = GPL3
+ depends = arch-audit
+ depends = pkgtools
+ source = https://github.com/Irvinehimself/ArchAudit-Report/archive/v1.0.tar.gz
+ sha256sums = fd4559b866f73dd3ae6fb3f7e2a6bd36b3f14150fbd16e8af24c896fb5c4402c
+
+pkgname = archaudit-report
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..8d97cb2b3b42
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,16 @@
+# Maintainer: Irvine <irvinemcminn_at_that gmail_place>
+pkgname=archaudit-report
+pkgver=1.0
+pkgrel=1
+pkgdesc="Report on applications with inherited security advisories"
+arch=('any')
+url="https://github.com/Irvinehimself/ArchAudit-Report"
+license=('GPL3')
+depends=('arch-audit' 'pkgtools')
+source=("https://github.com/Irvinehimself/ArchAudit-Report/archive/v1.0.tar.gz")
+sha256sums=("fd4559b866f73dd3ae6fb3f7e2a6bd36b3f14150fbd16e8af24c896fb5c4402c")
+
+package() {
+ cd ${srcdir}/"ArchAudit-Report-$pkgver"
+ install -Dm755 $pkgname "$pkgdir/usr/bin/$pkgname"
+}