summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorAaron Griffin <aaron@archlinux.org>2007-02-12 10:28:36 +0100
committerAaron Griffin <aaron@archlinux.org>2007-02-12 10:28:36 +0100
commite6efbc109f56d9a69198862f0c2c2be0ddf3d2e1 (patch)
tree7e6296c8d96ee0164b9f4887597b9b664243a41a /scripts
parentb623b98882d44c3f979e2d64d35167b63b42fedb (diff)
downloadpacman-e6efbc109f56d9a69198862f0c2c2be0ddf3d2e1.tar.gz
pacman-e6efbc109f56d9a69198862f0c2c2be0ddf3d2e1.tar.xz
Added changes from Daniel YC Lin via bug #3266
- support for the 'BCemno' makepkg options
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/makeworld22
1 files changed, 16 insertions, 6 deletions
diff --git a/scripts/makeworld b/scripts/makeworld
index 99dfff0b..6090ad9b 100755
--- a/scripts/makeworld
+++ b/scripts/makeworld
@@ -25,16 +25,20 @@ toplevel=$(pwd)
usage() {
echo "makeworld version $version"
- echo
- echo "Usage: $0 [options] <destdir> <category> [category] ..."
- echo
- echo "Options:"
+ echo "usage: $0 [options] <destdir> <category> [category] ..."
+ echo "options:"
echo " -b, --builddeps Build missing dependencies from source"
+ echo " -B, --noccache Do not use ccache during build"
echo " -c, --clean Clean up work files after build"
+ echo " -C, --cleancache Clean up source files from the cache"
echo " -d, --nodeps Skip all dependency checks"
+ echo " -e, --noextract Do not extract source files (use existing src/ dir)"
echo " -f, --force Overwrite existing packages"
echo " -i, --install Install package after successful build"
+ echo " -m, --nocolor Disable colorized output messages"
+ echo " -n, --nostrip Do not strip binaries/libraries"
echo " -h, --help This help"
+ echo " -o, --nobuild Download and extract files only"
echo " -r, --rmdeps Remove installed dependencies after a successful build"
echo " -s, --syncdeps Install missing dependencies with pacman"
echo " -S, --sudosync Install missing dependencies with pacman and sudo"
@@ -79,16 +83,22 @@ for arg in $*; do
exit 1
;;
-*)
- while getopts "chisSbdfr-" opt; do
+ while getopts "chisSbdfrBCemnoS-" opt; do
case $opt in
c) MAKEPKG_OPTS="$MAKEPKG_OPTS -c" ;;
i) MAKEPKG_OPTS="$MAKEPKG_OPTS -i" ;;
s) MAKEPKG_OPTS="$MAKEPKG_OPTS -s" ;;
- S) MAKEPKG_OPTS="$MAKEPKG_OPTS -S" ;;
b) MAKEPKG_OPTS="$MAKEPKG_OPTS -b" ;;
d) MAKEPKG_OPTS="$MAKEPKG_OPTS -d" ;;
f) MAKEPKG_OPTS="$MAKEPKG_OPTS -f" ;;
r) MAKEPKG_OPTS="$MAKEPKG_OPTS -r" ;;
+ B) MAKEPKG_OPTS="$MAKEPKG_OPTS -B" ;;
+ C) MAKEPKG_OPTS="$MAKEPKG_OPTS -C" ;;
+ e) MAKEPKG_OPTS="$MAKEPKG_OPTS -e" ;;
+ m) MAKEPKG_OPTS="$MAKEPKG_OPTS -m" ;;
+ n) MAKEPKG_OPTS="$MAKEPKG_OPTS -n" ;;
+ o) MAKEPKG_OPTS="$MAKEPKG_OPTS -o" ;;
+ S) MAKEPKG_OPTS="$MAKEPKG_OPTS -S" ;;
h)
usage
exit 0