summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 49aa03354038bb7542f06ae7e6f02ac6edd64c2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
pkgname=shellcheck-git-static
pkgver=0.4.6
pkgrel=1
pkgdesc="shellcheck-static, but using the latest-commit builds maintained by the author"
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"

    # We need this just to compute the pkgver to use :D
    "git+https://github.com/koalaman/shellcheck.git#branch=master"
)
sha256sums=('SKIP' 'SKIP')

pkgver() {
  cd "$srcdir/shellcheck"
  printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

package() {
    cd "${srcdir}/shellcheck-latest"
    install -Dt "${pkgdir}/usr/bin" "shellcheck"
    install -Dt "${pkgdir}/usr/share/shellcheck" "LICENSE.txt" "README.txt"
}