Added a new keyword to the build-pkg target: all.

If this keyword is specified like this:

	$ xbps.sh build-pkg all

All currently packages installed in masterdir will be created
as binary packages in XBPS_PACKAGESDIR.

--HG--
extra : convert_revision : 97a8cb7d6aa2a7462845a2e67e9c8a443051fc3b
This commit is contained in:
Juan RP 2008-12-13 07:05:42 +01:00
parent e817d470ab
commit 4fa6ed944c
1 changed files with 15 additions and 4 deletions

19
xbps.sh
View File

@ -41,8 +41,10 @@ $progname: [-C] [-c <config_file>] <target> <pkg>
Targets:
build <pkg> Build a package (fetch + extract + configure + build).
build-pkg <pkg> Build a binary package from <pkg>.
Package must be installed into destdir before it.
build-pkg [<pkg>|all] Build a binary package from <pkg>.
Package must be installed into destdir. If the <all>
keyword is used instead of <pkg>, all packages
currently installed will be used.
chroot Enter to the chroot in masterdir.
configure <pkg> Configure a package (fetch + extract + configure).
extract <pkg> Extract distribution file(s) into build directory.
@ -273,8 +275,17 @@ build|configure)
build-pkg)
. $XBPS_SHUTILSDIR/binpkg.sh
. $XBPS_SHUTILSDIR/tmpl_funcs.sh
setup_tmpl $2
xbps_make_binpkg
if [ "$2" = "all" ]; then
for f in $($XBPS_PKGDB_CMD list|awk '{print $1}'); do
setup_tmpl $f
[ "$build_style" = "meta-template" ] && continue
xbps_make_binpkg
reset_tmpl_vars
done
else
setup_tmpl $2
xbps_make_binpkg
fi
;;
chroot)
. $XBPS_SHUTILSDIR/chroot.sh