summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Kitching2017-06-25 22:33:12 +0100
committerChris Kitching2017-06-25 22:33:12 +0100
commitf6f044b6923597467a3170bfe0fde43c686466e6 (patch)
treee325c8f1c5a3a57c635e4180f9ce881008cd3901
downloadaur-f6f044b6923597467a3170bfe0fde43c686466e6.tar.gz
Static shellcheck
-rw-r--r--.SRCINFO17
-rw-r--r--PKGBUILD17
2 files changed, 34 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..47997f2bae39
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,17 @@
+# Generated by mksrcinfo v8
+# Sun Jun 25 21:33:04 UTC 2017
+pkgbase = shellcheck-static
+ pkgdesc = shellcheck, without the 400MB haskell dependencies
+ pkgver = 0.4.6
+ pkgrel = 1
+ arch = i686
+ arch = x86_64
+ license = AGPL3
+ depends = gmp
+ provides = shellcheck=0.4.6
+ conflicts = shellcheck
+ source = https://storage.googleapis.com/shellcheck/shellcheck-latest.linux.x86_64.tar.xz
+ sha256sums = c0c39dac36714058f8b6e1a874255f556dfd66870e0c82791acff3b223a06e4e
+
+pkgname = shellcheck-static
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..599ed36c5dea
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,17 @@
+pkgname=shellcheck-static
+pkgver=0.4.6
+pkgrel=1
+pkgdesc="shellcheck, without the 400MB haskell dependencies"
+license=("AGPL3")
+arch=("i686" "x86_64")
+depends=('gmp')
+conflicts=("shellcheck")
+provides=("shellcheck=0.4.6")
+
+source=("https://storage.googleapis.com/shellcheck/shellcheck-latest.linux.x86_64.tar.xz")
+sha256sums=('c0c39dac36714058f8b6e1a874255f556dfd66870e0c82791acff3b223a06e4e')
+
+package() {
+ install -Dt "${pkgdir}/usr/bin" "${srcdir}/shellcheck-latest/shellcheck"
+ install -Dt "${pkgdir}/usr/share/shellcheck" "${srcdir}/shellcheck-latest/LICENSE.txt" "${srcdir}/shellcheck-latest/README.txt"
+}