blob: 5ade783c26508ecbc0ab601836946f7ed7b880da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=checkbashisms
pkgver=2.0.0.2
pkgrel=3
pkgdesc="Basic checks on shell scripts for the presence of non portable syntax"
url="http://sourceforge.net/projects/checkbaskisms/"
arch="noarch"
license="GPL2"
depends="perl"
source="http://downloads.sourceforge.net/project/checkbaskisms/$pkgver/checkbashisms"
builddir="$srcdir"
package() {
cd "$builddir"
install -D -m755 "$srcdir"/$pkgname "$pkgdir"/usr/bin/$pkgname
}
sha512sums="cd9376f4c34773aba79f81b8bb129d912844102e91e363480b9983092efd36c4827e0447242aecfcdb3cfd4cc50e19e105cc645368e8c9735f49c8e381964dd4 checkbashisms"
|