Added the flags "-i". Use it when you only want to build and install

a package into destdir but do not want to have it in masterdir.

Useful to test different versions, with incompatible ABI changes, etc.

--HG--
extra : convert_revision : cd13448fb92fdf0df6547477c7e9d7343bb197a0
This commit is contained in:
Juan RP 2008-10-02 03:52:21 +02:00
parent 7b9c3503fa
commit 61d42c32c7
2 changed files with 34 additions and 9 deletions

16
README
View file

@ -64,6 +64,22 @@ To list installed (stowned) packages, use this:
$ pkgfs.sh -c pkgfs.conf list
To only extract the distfile, without configuring/building/installing:
$ pkgfs.sh -c pkgfs.conf -i install foo-1.0
To not remove the build directory after successful installation:
$ pkgfs.sh -c pkgfs.conf -C install blah-1.0
To only fetch the distfile:
$ pkgfs.sh -c pkgfs.conf -e install blah-1.0
To only install the package, _without_ stowning it into the master directory:
$ pkgfs.sh -c pkgfs.conf -i install blob-4.0
That's all for now folks. I hope you find it useful, as I do.
------------------------------------------------------------------------------