tazwok view examples/tazwok.conf @ rev 264

Another typo ;)
author Antoine Bodin <gokhlayeh@slitaz.org>
date Sat Feb 12 23:14:00 2011 +0100 (2011-02-12)
parents fa5c0b1fece2
children 44d261b0b464
line source
1 # tazwok.conf: Tazwok configuration file.
2 #
4 # Default makeflags.
5 MAKEFLAGS="-j$((`grep processor /proc/cpuinfo | wc -l`+1))"
7 # Default architecture.
8 ARCH="i486"
10 # Default build host.
11 BUILD_HOST="$ARCH-pc-linux-gnu"
13 # Default compilation flags.
14 # More details at :
15 # http://www.gentoo.org/doc/en/gcc-optimization.xml
16 # http://en.gentoo-wiki.com/wiki/Safe_Cflags
17 #
18 # Note : -pipe will be automatically disabled if you have less that
19 # 512MB of free RAM to avoid gcc crashes.
20 #
21 # Default SliTaz flags - wide compatibility & optimized for i386 as it's the
22 # slowest CPU :
23 #CFLAGS="-mtune=$ARCH -O2 -pipe -fomit-frame-pointer"
24 # Where ARCH=i386
25 #
26 # Cook compatible packages partially optimized for you're own hardware :
27 #CFLAGS="-mtune=$ARCH -O2 -pipe -fomit-frame-pointer"
28 # Where ARCH=you're arch
29 #
30 # Cook packages fully optimized for you're hardware - Warning, compatible only
31 # with same hardware and newest of the same family :
32 #CFLAGS="-march=native -O2 -pipe -fomit-frame-pointer"
33 CFLAGS="-mtune=$ARCH -O2 -pipe -fomit-frame-pointer"
34 CXXFLAGS="$CFLAGS"
36 # Default tool prefix.
37 TOOLPREFIX="${BUILD_HOST}-"
39 # Default arguments for GNU configure.
40 default_prefix=/usr
41 default_datarootdir=$default_prefix/share
42 default_datadir=$default_datarootdir
43 default_localedir=$default_datarootdir/locale
44 default_infodir=$default_datarootdir/info
45 default_mandir=$default_datarootdir/man
46 default_build="$BUILD_HOST"
47 default_host="$BUILD_HOST"
48 # CONFIGURE_ARGS is here only for backward compatibility.
49 CONFIGURE_ARGS="--build=$BUILD_HOST --host=$BUILD_HOST"
51 # Translation files to be included in packages. Note that you can specify
52 # several locales.
53 LOCALE="fr"
55 # Mirrors URLs. To download sources near your location.
56 # GNU mirror :
57 GNU_MIRROR="ftp://sunsite.cnlab-switch.ch/mirror/gnu"
58 # SourceForge mirror :
59 SF_MIRROR="http://switch.dl.sourceforge.net/sourceforge"
60 # Xorg mirror :
61 XORG_MIRROR="ftp://ftp.solnet.ch/mirror/x.org/pub/individual"
62 # Gnome mirror :
63 GNOME_MIRROR="http://ftp.gnome.org/pub/GNOME/sources"
65 # Favorite console editor.
66 EDITOR="nano"
68 # FSH standard directories with init. Package generation will abort if
69 # a file is installed in a non-specified path. Note /vz is for OpenVZ.
70 FSH="bin boot dev etc home init lib media mnt proc root sbin share sys \
71 tmp usr var vz usr/bin usr/games usr/include usr/lib usr/local usr/sbin \
72 usr/share usr/src"
74 # tazpkg compression "gzip" or "lzma".
75 COMPRESSION="lzma"
77 # Slitaz Toolchain : the tools used to compile all other packages.
78 # Toolchain packages doesn't need to be included as build_depends
79 # because they are in the chroot by default. The order in this
80 # variable is important : it's the compile order for the temporary
81 # toolchain which can be used to recook the base chroot, then all
82 # the wok. Toolchain is compiled this way according the LFS book :
83 # First - binutils, GCC; at this point they are linked to the host system.
84 # Second - the temp toolchain using the order defined in this variable.
85 # This toolchain is cross-compiled against a self-depend glibc.
86 # Third - all the wok in normal order, including the toolchain packages.
87 # This cook order is used only if glibc/binutils/gcc/linux-api-headers
88 # is updated to the next minor version or more (y.x.z -> y.x+1.z).
89 SLITAZ_TOOLCHAIN="linux-api-headers
90 glibc
91 binutils
92 gcc
93 busybox
94 ncurses
95 bash
96 bzip2
97 gawk
98 gettext
99 m4
100 make
101 patch
102 db
103 gdbm
104 zlib
105 perl
106 texinfo
107 autoconf
108 automake
109 lzma"
111 # Slitaz toolchain extra : package which are needed to cook other
112 # but which are not in the core temporary toolchain.
113 # Note : order is not important here.
114 SLITAZ_TOOLCHAIN_EXTRA="tazpkg
115 tazwok-experimental
116 pkg-config
117 libtool
118 libpthread-stubs"
120 # Cook options :
121 # Repack sources in .tar.lzma format.
122 repack_src="yes"