tazpkg annotate README @ rev 354
Make cpio quiet
author | Antoine Bodin <gokhlayeh@mailoo.org> |
---|---|
date | Tue Aug 03 23:17:57 2010 +0200 (2010-08-03) |
parents | f6dba4eac84a |
children | dfb6fc121635 |
rev | line source |
---|---|
paul@349 | 1 README for Tazpkg - Tiny autonomous packages manager |
pankso@0 | 2 =============================================================================== |
pankso@0 | 3 |
pankso@0 | 4 |
paul@349 | 5 Tazpkg is a small but powerful packages manager for SliTaz GNU/Linux and |
paul@349 | 6 other UNIX-like operating systems. It uses a *.tazpkg package generally built |
paul@349 | 7 by Tazwok with a receipt found in the wok. More information can be found in |
paul@349 | 8 the SliTaz Cookbook and the manual. |
pankso@0 | 9 |
pankso@343 | 10 Tazpkg is entirely built from scratch using SHell script, compatible with |
pankso@343 | 11 Bash, it runs under Ash - part of the Busybox project. Tazpkg is distributed |
pankso@343 | 12 under the free GNU license GPL V3. |
pankso@0 | 13 |
pankso@344 | 14 Developement HG repo: http://hg.slitaz.org/tazpkg |
pankso@344 | 15 |
pankso@0 | 16 |
pankso@343 | 17 Installation |
pankso@343 | 18 ------------ |
pankso@343 | 19 To install all needed files and compile translated messages, make and gettext |
pankso@343 | 20 must be installed. Running 'make install' will install everything in /usr, but |
pankso@343 | 21 another path and/or destination can be specified via PREFIX and DESTDIR. |
pankso@343 | 22 Example: |
pankso@0 | 23 |
pankso@343 | 24 $ make DESTDIR=$PWD/_pkg install |
pankso@0 | 25 |
pankso@343 | 26 Uninstall |
pankso@343 | 27 --------- |
pankso@343 | 28 Simply type: |
pankso@343 | 29 |
pankso@343 | 30 $ make uninstall |
pankso@0 | 31 |
pankso@343 | 32 Translation |
pankso@343 | 33 ----------- |
pankso@343 | 34 To start a new translation please use msginit from the pot file directory. |
pankso@343 | 35 Example for French/France locale (fr_FR): |
pankso@0 | 36 |
pankso@343 | 37 $ msginit -l fr_FR -o fr.po -i tazpkg.pot |
pankso@0 | 38 |
pankso@343 | 39 To update all translations from the pot file: |
pankso@0 | 40 |
pankso@343 | 41 $ make msgmerge |
pankso@0 | 42 |
pankso@343 | 43 To compile po files for testing purposes you can use 'make msgfmt' or manually |
pankso@343 | 44 compile your translation. Example for french locale, note that the file must be |
pankso@343 | 45 copied into /usr/share/locale/fr/LC_MESSAGES so gettext can find it: |
pankso@279 | 46 |
pankso@343 | 47 $ msgfmt -o tazpkg.mo fr.po |
pankso@0 | 48 |
pankso@0 | 49 |
pankso@0 | 50 =============================================================================== |
pankso@0 | 51 http://www.slitaz.org/ |