summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Kitching2017-06-26 16:52:37 +0100
committerChris Kitching2017-06-26 16:53:04 +0100
commit3288b1f5faa6c096bae359102cb704d38107f634 (patch)
tree5f67bb3361b1bdcb2149a5208faa2c57241fa38e
parentf6f044b6923597467a3170bfe0fde43c686466e6 (diff)
downloadaur-3288b1f5faa6c096bae359102cb704d38107f634.tar.gz
Update to use upstream's versioned tarballs. Smooth sailing now!
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD11
2 files changed, 9 insertions, 8 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 47997f2bae39..8e43d1769c6a 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,5 +1,5 @@
# Generated by mksrcinfo v8
-# Sun Jun 25 21:33:04 UTC 2017
+# Mon Jun 26 15:52:29 UTC 2017
pkgbase = shellcheck-static
pkgdesc = shellcheck, without the 400MB haskell dependencies
pkgver = 0.4.6
@@ -10,8 +10,8 @@ pkgbase = shellcheck-static
depends = gmp
provides = shellcheck=0.4.6
conflicts = shellcheck
- source = https://storage.googleapis.com/shellcheck/shellcheck-latest.linux.x86_64.tar.xz
- sha256sums = c0c39dac36714058f8b6e1a874255f556dfd66870e0c82791acff3b223a06e4e
+ source = https://storage.googleapis.com/shellcheck/shellcheck-v0.4.6.linux.x86_64.tar.xz
+ sha256sums = fe0a6e94d9cf24b5a46553265846480425067f95f2630317f8fd99bc60a13719
pkgname = shellcheck-static
diff --git a/PKGBUILD b/PKGBUILD
index 599ed36c5dea..edb2cb2eeb35 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,6 +1,6 @@
pkgname=shellcheck-static
pkgver=0.4.6
-pkgrel=1
+pkgrel=2
pkgdesc="shellcheck, without the 400MB haskell dependencies"
license=("AGPL3")
arch=("i686" "x86_64")
@@ -8,10 +8,11 @@ depends=('gmp')
conflicts=("shellcheck")
provides=("shellcheck=0.4.6")
-source=("https://storage.googleapis.com/shellcheck/shellcheck-latest.linux.x86_64.tar.xz")
-sha256sums=('c0c39dac36714058f8b6e1a874255f556dfd66870e0c82791acff3b223a06e4e')
+source=("https://storage.googleapis.com/shellcheck/shellcheck-v${pkgver}.linux.x86_64.tar.xz")
+sha256sums=('fe0a6e94d9cf24b5a46553265846480425067f95f2630317f8fd99bc60a13719')
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"
+ cd "${srcdir}/shellcheck-v${pkgver}"
+ install -Dt "${pkgdir}/usr/bin" "shellcheck"
+ install -Dt "${pkgdir}/usr/share/shellcheck" "LICENSE.txt" "README.txt"
}