tazwok view examples/tazwok.conf @ rev 556

Tiny edits
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Mar 30 01:54:35 2016 +0300 (2016-03-30)
parents 44e24b12e9dd
children
line source
1 # tazwok.conf: Tazwok configuration file.
2 #
4 # WOK_UPDATE_METHOD can be "tarball" or "hg"
5 # tarball: download the full tarball and copy it into build-wok.
6 # hg: download only the new changes, needs mercurial installed.
7 WOK_UPDATE_METHOD="hg"
9 TARBALL_WOK="http://hg.slitaz.org/wok/archive/tip.tar.bz2"
10 HG_WOK="http://hg.slitaz.org/wok"
12 # Default makeflags.
13 # This one make compilation use all cpu when possible, and have
14 # priority hover other processes.
15 # MAKEFLAGS="-j$((`grep processor /proc/cpuinfo | wc -l`+1))"
16 # This one makes use of all cpu but without priority, so if you
17 # run something else it can run smoothly even while compiling.
18 MAKEFLAGS="-j`grep processor /proc/cpuinfo | wc -l`"
20 # Default architecture.
21 ARCH="i486"
23 # Build and host. These options are for cross-compiling. If you specify
24 # both options and BUILD_SYSTEM is different from HOST_SYSTEM, configure
25 # will prepare to cross-compile from BUILD_SYSTEM to be used on HOST_SYSTEM.
26 BUILD_SYSTEM="$ARCH-pc-linux-gnu"
27 HOST_SYSTEM="$ARCH-pc-linux-gnu"
29 # Default compilation flags.
30 # More details at :
31 # http://www.gentoo.org/doc/en/gcc-optimization.xml
32 # http://en.gentoo-wiki.com/wiki/Safe_Cflags
33 #
34 # Note : -pipe will be automatically disabled if you have less than
35 # 512MB of free RAM to avoid gcc crashes.
36 #
37 # Default SliTaz flags - wide compatibility & optimized for i386 as it's the
38 # slowest CPU :
39 #CFLAGS="-mtune=$ARCH -O2 -pipe -fomit-frame-pointer"
40 # Where ARCH=i386
41 #
42 # Cook compatible packages partially optimized for your own hardware :
43 #CFLAGS="-mtune=$ARCH -O2 -pipe -fomit-frame-pointer"
44 # Where ARCH=your arch
45 #
46 # Cook packages fully optimized for your hardware - Warning, compatible only
47 # with same hardware and newest of the same family :
48 #CFLAGS="-march=native -O2 -pipe -fomit-frame-pointer"
49 #CFLAGS="-mtune=$ARCH -O2 -pipe -fomit-frame-pointer"
50 CFLAGS="-march=$ARCH -Os -pipe -fomit-frame-pointer"
51 CXXFLAGS="$CFLAGS"
53 # Default tool prefix.
54 TOOLPREFIX="${HOST_SYSTEM}-"
56 # Default arguments for GNU configure.
57 default_prefix=/usr
58 default_datarootdir=$default_prefix/share
59 default_datadir=$default_datarootdir
60 default_localedir=$default_datarootdir/locale
61 default_infodir=$default_datarootdir/info
62 default_mandir=$default_datarootdir/man
63 default_build="$BUILD_SYSTEM"
64 default_host="$HOST_SYSTEM"
65 # CONFIGURE_ARGS is here only for backward compatibility.
66 CONFIGURE_ARGS="--build=$BUILD_SYSTEM --host=$HOST_SYSTEM"
68 # Translation files to be included in packages. Note that you can specify
69 # several locales.
70 LOCALE="fr"
72 # Mirrors URLs. To download sources near your location.
73 # GNU mirror :
74 GNU_MIRROR="ftp://sunsite.cnlab-switch.ch/mirror/gnu"
75 # SourceForge mirror :
76 SF_MIRROR="http://switch.dl.sourceforge.net/sourceforge"
77 # Xorg mirror :
78 XORG_MIRROR="http://xorg.freedesktop.org/releases/individual"
79 # Gnome mirror :
80 GNOME_MIRROR="http://ftp.gnome.org/pub/GNOME/sources"
82 # Favorite console editor.
83 EDITOR="nano"
85 # FSH standard directories with init. Package generation will abort if
86 # a file is installed in a non-specified path. Note /vz is for OpenVZ.
87 FSH="bin boot dev etc home init lib media mnt proc root sbin share sys \
88 tmp usr run run/udev var vz usr/bin usr/games usr/include usr/lib usr/local usr/sbin \
89 usr/share usr/src"
91 # tazpkg compression "gzip" or "lzma".
92 COMPRESSION="lzma"
94 # SliTaz Toolchain : the tools used to compile all other packages.
95 # Toolchain packages don't need to be included as build_depends
96 # because they are in the chroot by default. The order in this
97 # variable is important : it's the compile order for the temporary
98 # toolchain which can be used to recook the base chroot, then all
99 # the wok. Toolchain is compiled this way according to the LFS book :
100 # First - binutils, GCC; at this point they are linked to the host system.
101 # Second - the temp toolchain using the order defined in this variable.
102 # The toolchain is cross-compiled against a self-depending glibc.
103 # Third - all the wok in normal order, including the toolchain packages.
104 # This cook order is used only if glibc/binutils/gcc/linux-api-headers
105 # are updated to the next minor version or more (y.x.z -> y.x+1.z).
106 SLITAZ_TOOLCHAIN="linux-api-headers
107 glibc
108 binutils
109 gcc
110 busybox
111 ncurses
112 bash
113 bzip2
114 gawk
115 gettext
116 m4
117 make
118 patch
119 db
120 gdbm
121 zlib
122 perl
123 texinfo
124 autoconf
125 automake
126 lzma"
128 # SliTaz toolchain extra : packages which are needed to cook others
129 # but which are not in the core temporary toolchain.
130 # Note : order is not important here.
131 SLITAZ_TOOLCHAIN_EXTRA="tazpkg
132 tazwok
133 pkg-config
134 libtool
135 libpthread-stubs"
137 # Cook options :
138 # Repack sources in .tar.lzma format.
139 repack_src="yes"