summaryrefslogtreecommitdiffstats
path: root/scripts/makepkg
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/makepkg')
-rwxr-xr-xscripts/makepkg10
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/makepkg b/scripts/makepkg
index d8c3938c..5f39a832 100755
--- a/scripts/makepkg
+++ b/scripts/makepkg
@@ -1,6 +1,6 @@
#!/bin/bash
-myver='2.3'
+myver='2.3.1'
startdir=`pwd`
[ -f /etc/makepkg.conf ] && source /etc/makepkg.conf
@@ -52,9 +52,9 @@ if [ "$1" = "--help" -o "$1" = "-h" ]; then
echo "usage: $0 [options] [build_script]"
echo "options:"
echo " -c, --clean Clean up work files after build"
- echo " -d, --syncdeps Install missing dependencies with pacman"
+ echo " -s, --syncdeps Install missing dependencies with pacman"
echo " -b, --builddeps Build missing dependencies from source"
- echo " -n, --nodeps Skip all dependency checks"
+ echo " -d, --nodeps Skip all dependency checks"
echo " -i, --install Install package after successful build"
echo " -f, --force Overwrite existing package"
echo " -h, --help This help"
@@ -79,13 +79,13 @@ for arg in $*; do
-c|--clean)
CLEANUP=1
;;
- -d|--syncdeps)
+ -s|--syncdeps)
DEP_BIN=1
;;
-b|--builddeps)
DEP_SRC=1
;;
- -n|--nodeps)
+ -d|--nodeps)
NODEPS=1
;;
-i|--install)