summaryrefslogtreecommitdiffstats
path: root/newapkbuild.in
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2011-06-28 07:21:36 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2011-06-28 07:21:36 +0000
commit9947fdfafadd0d5fe4a19ff38f1e55ead0d95ac2 (patch)
tree00bd769b3b0f57529521064346f31b5f404c6052 /newapkbuild.in
parent15718f9cf98c32e3d93c2a52d94dff414f8838d3 (diff)
downloadabuild-9947fdfafadd0d5fe4a19ff38f1e55ead0d95ac2.tar.bz2
abuild-9947fdfafadd0d5fe4a19ff38f1e55ead0d95ac2.tar.xz
newapkbuild: use -y for python instead of -q
Diffstat (limited to 'newapkbuild.in')
-rwxr-xr-xnewapkbuild.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/newapkbuild.in b/newapkbuild.in
index dce3133..85f87b5 100755
--- a/newapkbuild.in
+++ b/newapkbuild.in
@@ -268,14 +268,14 @@ usage() {
echo " -h Show this help"
echo " -l Set package license to LICENSE"
echo " -p Create perl package (Assume Makefile.PL is there)"
- echo " -q Create python package (Assume setup.py is there)"
+ echo " -y Create python package (Assume setup.py is there)"
echo " -u Set package URL"
echo " -s Use sourceforge source URL"
echo ""
exit 0
}
-while getopts "acd:fhl:pqu:s" opt; do
+while getopts "acd:fhl:pyu:s" opt; do
case $opt in
'a') buildtype="autotools";;
'c') cpinitd=1;;
@@ -284,7 +284,7 @@ while getopts "acd:fhl:pqu:s" opt; do
'h') usage;;
'l') license="$OPTARG";;
'p') buildtype="perl";;
- 'q') buildtype="python";;
+ 'y') buildtype="python";;
'u') url="$OPTARG";;
's') sourceforge=1;;
esac