mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-14 21:22:03 +01:00
Basic checks on shell scripts for the presence of non portable syntax http://sourceforge.net/projects/checkbaskisms/
37 lines
757 B
Plaintext
37 lines
757 B
Plaintext
# Maintainer: Natanael Copa
|
|
pkgname=checkbashisms
|
|
pkgver=2.0.0.2
|
|
pkgrel=0
|
|
pkgdesc="Basic checks on shell scripts for the presence of non portable syntax"
|
|
url="http://sourceforge.net/projects/checkbaskisms/"
|
|
arch="noarch"
|
|
license="GPL"
|
|
depends="perl"
|
|
depends_dev=""
|
|
makedepends="$depends_dev"
|
|
install=""
|
|
subpackages=""
|
|
source="http://downloads.sourceforge.net/project/checkbaskisms/$pkgver/checkbashisms"
|
|
|
|
_builddir="$srcdir"
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
install -D -m755 "$srcdir"/$pkgname "$pkgdir"/usr/bin/$pkgname
|
|
}
|
|
|
|
md5sums="1261d0c5aafedc15ab4405c1969deacf checkbashisms"
|