abuild: verify names of subpackages

This is to avoid things like:
http://git.alpinelinux.org/cgit/aports/commit/?id=81c0a4bb37e709ebc5add8394331d28209a61b6f
This commit is contained in:
Natanael Copa 2011-11-01 08:50:20 +00:00
parent bfc8e37323
commit b0f9ec91f7
1 changed files with 7 additions and 0 deletions

View File

@ -110,6 +110,13 @@ sanitycheck() {
[ -z "$url" ] && die "Missing url in APKBUILD"
[ -z "$license" ] && die "Missing license in APKBULID"
# check so no package names starts with -
for i in $pkgname $subpackages; do
case $i in
-*) die "${i%:*} is not a valid package name";;
esac
done
# check if CARCH, CBUILD, CHOST and CTARGET is set
if [ -z "$CARCH" ]; then
case "$(uname -m)" in