blob: fb65583cb2a3bdb086927f7a31c4dc39cabfaeb8 (
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
29
30
31
32
33
34
35
36
37
38
39
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=checkbashisms
pkgver=2.0.0.2
pkgrel=5
pkgdesc="Basic checks on shell scripts for the presence of non portable syntax"
url="https://sourceforge.net/projects/checkbaskisms/"
arch="noarch"
license="GPL2"
depends="perl"
source="http://downloads.sourceforge.net/project/checkbaskisms/$pkgver/checkbashisms
checkbashisms-perl-5.26.patch"
builddir="$srcdir"
check() {
cd "$builddir"
printf '#!/bin/sh\necho "hello world"\n' > ./testfile
perl ./checkbashisms --version
perl ./checkbashisms ./testfile
}
prepare() {
cd "$builddir"
# can not patch a symlink
src=$(realpath checkbashisms)
rm "$pkgname"
cp "$src" "$pkgname"
default_prepare
}
package() {
cd "$builddir"
install -D -m755 "$srcdir"/$pkgname "$pkgdir"/usr/bin/$pkgname
}
sha512sums="cd9376f4c34773aba79f81b8bb129d912844102e91e363480b9983092efd36c4827e0447242aecfcdb3cfd4cc50e19e105cc645368e8c9735f49c8e381964dd4 checkbashisms
78ef7c52748e3aee4202b316ee22a67b17024fecbdd0e9008a6e68348bf0454a362ed728da550799ffbed4ad916735cef965e9dd83a7d69af257710fbd69d69a checkbashisms-perl-5.26.patch"
|