Update README to match current behaviour of code.

--HG--
extra : convert_revision : a402005d8da8335c696889b9c5a264a5b8cb1bb2
This commit is contained in:
Juan RP 2008-10-04 06:35:43 +02:00
parent e9def74b60
commit 98b7b40a7b
1 changed files with 9 additions and 9 deletions

18
README
View File

@ -21,7 +21,7 @@ If PKGFS_CONFIG_FILE is not set or specified from the command line with the
Once that you read the "pkgfs.conf" file and configured it, you can start
installing packages by using the command:
$ pkgfs.sh install glib-2.18.1
$ pkgfs.sh install glib
Please note that it's assumed that PKGFS_TEMPLATESDIR is properly defined
and actually contains valid template files.
@ -36,7 +36,7 @@ on which ``Xstow
To remove a currently installed (and stowned) package, you can use:
$ pkgfs.sh remove glib-2.18.1
$ pkgfs.sh remove glib
Please note that when you remove it, the package will also be removed
from PKGFS_DESTDIR and previously "unstowned".
@ -51,15 +51,15 @@ PKGFS_DESTDIR/<pkgname>.
Summary, to stow an already installed package (into PKGFS_DESTDIR/<pkgname>):
$ pkgfs.sh stow glib-2.18.1
$ pkgfs.sh stow glib
and to unstow an already installed (stowned) package:
$ pkgfs.sh unstow glib-2.18.1
$ pkgfs.sh unstow glib
You can also print some stuff about any template, e.g:
$ pkgfs.sh info glib-2.18.1
$ pkgfs.sh info glib
To list installed (stowned) packages, use this:
@ -67,19 +67,19 @@ To list installed (stowned) packages, use this:
To only extract the distfile, without configuring/building/installing:
$ pkgfs.sh -i install foo-1.0
$ pkgfs.sh -i install foo
To not remove the build directory after successful installation:
$ pkgfs.sh -C install blah-1.0
$ pkgfs.sh -C install blah
To only fetch the distfile:
$ pkgfs.sh -e install blah-1.0
$ pkgfs.sh -e install blah
To only install the package, _without_ stowning it into the master directory:
$ pkgfs.sh -i install blob-4.0
$ pkgfs.sh -i install blob
That's all for now folks. I hope you find it useful, as I do.