cookutils view cook.conf @ rev 441

cross: sysroot method is now used (much better), eglibc replace glibc for ARM
author Christophe Lincoln <pankso@slitaz.org>
date Tue May 29 08:03:41 2012 +0000 (2012-05-29)
parents 71450d322f7b
children 19ff6f323fe4
line source
1 # Cook packages builder configuration file
2 #
4 # SliTaz working directory
5 SLITAZ="/home/slitaz"
7 # Directory paths for cookutils DB and files.
8 WOK="$SLITAZ/wok"
9 PKGS="$SLITAZ/packages"
10 SRC="$SLITAZ/src"
11 CACHE="$SLITAZ/cache"
12 LOGS="$SLITAZ/log"
13 FEEDS="$SLITAZ/xml"
14 DATA="/usr/share/cook"
16 # System packages DB.
17 DB="/var/lib/tazpkg"
18 INSTALLED="$DB/installed"
20 # Quality Assurance (empty to disable receipt_quality).
21 QA="0"
23 # Automatically cook missing build dependencies (empty to disable).
24 AUTO_COOK=""
26 # Hg wok for setup and flavors URL for the Cooker.
27 WOK_URL="http://hg.slitaz.org/wok"
28 FLAVORS_URL="http://hg.slitaz.org/flavors"
30 # Cooker URL for RSS feed link (http://localhost/cgi-bin/cooker/cooker.cgi)
31 COOKER_URL="http://cook.slitaz.org/"
33 # Translation files to be included in packages.
34 LOCALE=""
36 # Target host architecture type (Glibc doesn't support i386 anymore).
37 ARCH="i486"
39 # Build and host. These options are for cross-compiling. If you specify
40 # both options and BUILD_SYSTEM is different from HOST_SYSTEM, configure
41 # will prepare to cross-compile from BUILD_SYSTEM to be used on HOST_SYSTEM.
42 #BUILD_SYSTEM="$(uname -m)-slitaz-linux"
43 BUILD_SYSTEM="$ARCH-slitaz-linux"
44 HOST_SYSTEM="$ARCH-slitaz-linux"
46 # SliTaz use the sysroot method, this tells GCC to consider dir as the root
47 # of a tree that contains a (subset of) the root filesystem of the target
48 # operating system. Target system headers, libraries and run-time object
49 # files will be searched in there. Cook will use the tools and sysroot in
50 # the CROSS_TREE for cross compiling. Example: CROSS_TREE="/cross/$ARCH"
51 CROSS_TREE=""
53 # SliTaz optimisation flags - Wide compatibility & optimized for ARCH.
54 #
55 # With -O2: binutils: Produce 14.0M Packed 5.5M Compressed 1.2M
56 # With -Os: binutils: Produce 13.4M Packed 4.9M Compressed 1.1M
57 #
58 # ARM: don't use -0s but -02
59 # ARM: -mcpu=name [arm9|xscale|...] or -march=name [armv4|armv6|...]
60 # x86_64: CFLAGS="-march=nocona -Os -pipe"
61 #
62 #MAKEFLAGS="-j$(($(grep processor /proc/cpuinfo | wc -l)+1))"
63 MAKEFLAGS="-j$(grep processor /proc/cpuinfo | wc -l)"
64 CFLAGS="-march=$ARCH -Os -pipe -fomit-frame-pointer"
65 CXXFLAGS="$CFLAGS"
67 # Binutils 2.22 breaks many packages built without LDFLAGS set correctly.
68 #LDFLAGS="-Wl,--copy-dt-needed-entries -lXt"
70 # Default tool prefix for Binutils.
71 TOOLPREFIX="${HOST_SYSTEM}-"
73 # Default arguments for GNU configure. CONFIGURE_ARGS is needed for some
74 # packages since --build and --host is not set at all by cook.site (bug ?).
75 CONFIG_SITE=/etc/slitaz/cook.site
76 CONFIGURE_ARGS="--build=$BUILD_SYSTEM --host=$HOST_SYSTEM"
78 # Mirrors URLs. To download sources near your location.
79 GNU_MIRROR="ftp://sunsite.cnlab-switch.ch/mirror/gnu"
80 SF_MIRROR="http://switch.dl.sourceforge.net/sourceforge"
81 XORG_MIRROR="ftp://ftp.solnet.ch/mirror/x.org/pub/individual"
82 GNOME_MIRROR="http://ftp.gnome.org/pub/GNOME/sources"
84 # List of packages installed by cook or the Cooker setup.
85 SETUP_PKGS="slitaz-toolchain pkg-config intltool gettext zlib-dev bzip2
86 aufs-utils aufs m4 syslinux-extra pcre pcre-dev bash xorg-dev"
88 # List of filesystems into the aufs chroot (to protect / against modifications)
89 # Default tank config:
90 AUFS_MOUNTS="/ /proc /sys /dev/shm /dev/pts /var/cache/tazpkg \
91 /home /home/slitaz/src /home/slitaz/packages"
93 # Old way/tazwok compatibility.
94 BUILD_HOST="$HOST_SYSTEM"
95 SOURCES_REPOSITORY=$SRC