slitaz-modular annotate tazwok.conf @ rev 1
Added tag 0.1-alpha for changeset 6d654d523ac8
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Thu Nov 25 03:32:42 2010 +0000 (2010-11-25) |
parents | |
children |
rev | line source |
---|---|
slaxemulator@0 | 1 # tazwok.conf: Tazwok configuration file. |
slaxemulator@0 | 2 # |
slaxemulator@0 | 3 |
slaxemulator@0 | 4 # Wok directory/tree to find receipts and build packages. |
slaxemulator@0 | 5 # By default on SliTaz the directory is /home/slitaz/wok. |
slaxemulator@0 | 6 WOK="/home/slitaz/wok" |
slaxemulator@0 | 7 |
slaxemulator@0 | 8 # The path to the source tarballs of the binary packages. |
slaxemulator@0 | 9 SOURCES_REPOSITORY="/home/slitaz/src" |
slaxemulator@0 | 10 |
slaxemulator@0 | 11 # This path sets the binary packages repository. It's where all |
slaxemulator@0 | 12 # gen *.tazpkg will be stored when using the gen-repository command. |
slaxemulator@0 | 13 PACKAGES_REPOSITORY="/home/slitaz/packages" |
slaxemulator@0 | 14 |
slaxemulator@0 | 15 # Default build host. |
slaxemulator@0 | 16 BUILD_HOST=i486-pc-linux-gnu |
slaxemulator@0 | 17 |
slaxemulator@0 | 18 # Default tool prefix. |
slaxemulator@0 | 19 TOOLPREFIX="${BUILD_HOST}-" |
slaxemulator@0 | 20 |
slaxemulator@0 | 21 # Default arguments for GNU configure. |
slaxemulator@0 | 22 CONFIGURE_ARGS="--build=$BUILD_HOST --host=$BUILD_HOST" |
slaxemulator@0 | 23 |
slaxemulator@0 | 24 # Translation files to be included in packages. Note that you can specify |
slaxemulator@0 | 25 # several locales. |
slaxemulator@0 | 26 LOCALE="fr" |
slaxemulator@0 | 27 |
slaxemulator@0 | 28 # Mirrors URLs. To download sources near your location. |
slaxemulator@0 | 29 # GNU mirror : |
slaxemulator@0 | 30 GNU_MIRROR="ftp://sunsite.cnlab-switch.ch/mirror/gnu" |
slaxemulator@0 | 31 # SourceForge mirror : |
slaxemulator@0 | 32 SF_MIRROR="http://switch.dl.sourceforge.net/sourceforge" |
slaxemulator@0 | 33 # Xorg mirror : |
slaxemulator@0 | 34 XORG_MIRROR="ftp://ftp.solnet.ch/mirror/x.org/pub/individual" |
slaxemulator@0 | 35 |
slaxemulator@0 | 36 # Favorite console editor. |
slaxemulator@0 | 37 EDITOR="nano" |
slaxemulator@0 | 38 |
slaxemulator@0 | 39 # FSH standard directories with init. Package generation will abort if |
slaxemulator@0 | 40 # a file is installed in a non-specified path. Note /vz is for OpenVZ. |
slaxemulator@0 | 41 FSH="bin boot dev etc home init lib media mnt proc root sbin share sys \ |
slaxemulator@0 | 42 tmp usr var vz usr/bin usr/games usr/include usr/lib usr/local usr/sbin \ |
slaxemulator@0 | 43 usr/share usr/src" |
slaxemulator@0 | 44 |
slaxemulator@0 | 45 # tazpkg compression "gzip" or "lzma". |
slaxemulator@0 | 46 COMPRESSION="lzma" |
slaxemulator@0 | 47 |