abuild: add support for replaces_priority

This commit is contained in:
Natanael Copa 2012-02-17 14:16:35 +00:00
parent e76192fa59
commit dabc0dea8c

View File

@ -133,6 +133,9 @@ default_sanitycheck() {
[ -z "$url" ] && die "Missing url in APKBUILD"
[ -z "$license" ] && die "Missing license in APKBULID"
if [ -n "$replaces_prority" ] && ! egrep -q '^[0-9]+$'; then
die "replaces_priority must be a number"
fi
# check so no package names starts with -
for i in $pkgname $subpackages; do
case $i in
@ -712,6 +715,10 @@ EOF
echo "maintainer = $maintainer" >> "$pkginfo"
fi
if [ -n "$replaces_priority" ]; then
echo "replaces_priority = $replaces_priority"
fi
for i in $license; do
echo "license = $i" >> "$pkginfo"
done