Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-tools.git;a=commitdiff;h=7ae89519bc7e3ba2fe44cae96f2a58e0acbea704
commit 7ae89519bc7e3ba2fe44cae96f2a58e0acbea704 Author: Miklos Vajna <[EMAIL PROTECTED]> Date: Mon Nov 19 22:59:43 2007 +0100 add a README file diff --git a/Makefile b/Makefile index 2ef9a37..594b862 100644 --- a/Makefile +++ b/Makefile @@ -100,3 +100,13 @@ apidocs: %.1: %.txt a2x -f manpage $^ + +doc: HEADER.html Changelog + +HEADER.html: README + ln -s README HEADER.txt + asciidoc -a toc -a numbered -a sectids HEADER.txt + rm HEADER.txt + +Changelog: .git/refs/heads/master + git log --no-merges |git name-rev --tags --stdin >Changelog diff --git a/README b/README new file mode 100644 index 0000000..55eb46a --- /dev/null +++ b/README @@ -0,0 +1,59 @@ += Tools for Pacman-G2 +Miklos Vajna <[EMAIL PROTECTED]> + +== Summary + +`pacman-tools` is a collection of handy scripts around `pacman-g2` to build and +maintain packages. The first stable Frugalware that shipped `pacman-tools` was +0.2 (Aurora). + +== Requirements + +These scripts are written in `bash`, `python` and `perl`, so you will need +those interpreters to use all of them. Additionally the following libraries are +required to use `mkiso`, the `ISO9660` install image generation tool: + +* libpacman +* glib2 +* libxml2 + +You need to have `asciidoc` installed, if you want to build the documentation. + +== How to set it up + +The usual + +---- +$ ./configure +$ make +# make install +---- + +will work as expected. + +To get the latest source using git: + +---- +$ git clone git://git.frugalware.org/pub/other/pacman-tools/pacman-tools +---- + +== I would like to have support for ... + +If something does not work, then please report the issue to the +http://bugs.frugalware.org/[bug tracking system]. + +== Known bugs + +* None at this time. + +== Thanks + +for the following people: + +* Marcus Habermehl, for contributing `rpm2fpm` +* Vilmos Katona, for contributing `etcconfig` +* Bence Nagy, for the initial implementation of the `fwmakepkg` macro system +* Zsolt Szalai, for contributing `chkworld`, the no longer used `pud` and `rf` + scripts and the initial implementation of `chkdep` + +// vim: ft=asciidoc _______________________________________________ Frugalware-git mailing list [email protected] http://frugalware.org/mailman/listinfo/frugalware-git
