Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/build-support/shellnocheck/PKGBUILD
blob: 2efc21fb9141d1bd9addb993152ebfd2554b75a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
pkgname=shellnocheck
pkgver=1
pkgrel=1
pkgdesc="Shell script analysis tool"
url="https://github.com/tatokis/shellnocheck"
license=("GPL-2.0-or-later")
arch=('i486' 'i686' 'pentium4')
provides=('shellcheck')
conflicts=('shellcheck')
replaces=('shellcheck')
source=("git+https://github.com/tatokis/shellnocheck.git")
sha256sums=('SKIP')
makedepends=('git')

build() {
  cd shellnocheck
  make
}

package() {
  cd shellnocheck
  install -D -m755 shellcheck -t "$pkgdir"/usr/bin/
}