summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: aba7dab1994e0752d8941cf36207c44f9eb43c2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pkgname=shellcheck-static
pkgver=0.4.6
pkgrel=2
pkgdesc="shellcheck, without the 130MB haskell dependencies"
license=("AGPL3")
arch=("i686" "x86_64")
depends=('gmp')
conflicts=("shellcheck")
provides=("shellcheck=0.4.6")

source=("https://storage.googleapis.com/shellcheck/shellcheck-v${pkgver}.linux.x86_64.tar.xz")
sha256sums=('fe0a6e94d9cf24b5a46553265846480425067f95f2630317f8fd99bc60a13719')

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