summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/gensync2
-rwxr-xr-xscripts/makepkg10
-rwxr-xr-xscripts/makeworld10
3 files changed, 11 insertions, 11 deletions
diff --git a/scripts/gensync b/scripts/gensync
index 8c6dd320..cc825f3b 100755
--- a/scripts/gensync
+++ b/scripts/gensync
@@ -1,6 +1,6 @@
#!/bin/bash
-myver='2.3'
+myver='2.3.1'
usage() {
echo "gensync $myver"
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)
diff --git a/scripts/makeworld b/scripts/makeworld
index 4591c145..3c523f9c 100755
--- a/scripts/makeworld
+++ b/scripts/makeworld
@@ -1,16 +1,16 @@
#!/bin/bash
toplevel=`pwd`
-version="2.3"
+version="2.3.1"
usage() {
echo "makeworld version $version"
echo "usage: $0 [options] <destdir> <category> [category] ..."
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 packages"
echo " -h, --help This help"
@@ -35,13 +35,13 @@ for arg in $*; do
-i|--install)
MAKEPKG_OPTS="$MAKEPKG_OPTS -i"
;;
- -d|--syncdeps)
+ -s|--syncdeps)
MAKEPKG_OPTS="$MAKEPKG_OPTS -d"
;;
-b|--builddeps)
MAKEPKG_OPTS="$MAKEPKG_OPTS -b"
;;
- -n|--nodeps)
+ -d|--nodeps)
MAKEPKG_OPTS="$MAKEPKG_OPTS -n"
;;
-f|--force)