wok-current rev 9
Toolchain : binutils, glibc, gcc, make
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Fri Dec 14 21:14:40 2007 +0100 (2007-12-14) |
parents | 580279b0298b |
children | 01aa149c1ea9 |
files | binutils/receipt gcc/receipt glibc-dev/receipt glibc-dev/stuff/base-files.list glibc-dev/stuff/mkdir.list glibc/receipt make/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/binutils/receipt Fri Dec 14 21:14:40 2007 +0100 1.3 @@ -0,0 +1,43 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="binutils" 1.7 +VERSION="2.17" 1.8 +CATEGORY="extra" 1.9 +SHORT_DESC="GNU assembler, linker and binary utilities." 1.10 +MAINTAINER="pankso@slitaz.org" 1.11 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.12 +WEB_SITE="http://www.gnu.org/software/binutils/" 1.13 +WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" 1.14 + 1.15 +# Rules to configure and make the package. 1.16 +compile_rules() 1.17 +{ 1.18 + mkdir binutils-build && cd binutils-build 1.19 + ../$PACKAGE-$VERSION/configure --prefix=/usr \ 1.20 + --infodir=/usr/share/info --mandir=/usr/share/man \ 1.21 + --enable-shared $CONFIGURE_ARGS 1.22 + make tooldir=/usr 1.23 + # Install in binutils-build/ and then move the files to 1.24 + # to the source tree. Can't install directly... This is done 1.25 + # to keep the $src and $_pkg working for genpkg. 1.26 + make tooldir=/usr DESTDIR=$PWD/_pkg install 1.27 + mv _pkg ../$PACKAGE-$VERSION/ 1.28 +} 1.29 + 1.30 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.31 +genpkg_rules() 1.32 +{ 1.33 + mkdir -p $fs/usr/share/locale 1.34 + cp -a $_pkg/usr/bin $fs/usr 1.35 + cp -a $_pkg/usr/lib $fs/usr 1.36 + cp -a $_pkg/usr/include $fs/usr 1.37 + cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale 1.38 + # libiberty.h 1.39 + cp -a $src/include/libiberty.h $fs/usr/include 1.40 + # Remove libiberty.a (use the one from GCC) and 'strings' (Busybox). 1.41 + rm $fs/usr/lib/libiberty.a 1.42 + rm $fs/usr/bin/strings 1.43 + # Da strip... 1.44 + strip --strip-debug $fs/usr/bin/* 1.45 + strip --strip-debug $fs/usr/lib/*.so* 1.46 +}
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/gcc/receipt Fri Dec 14 21:14:40 2007 +0100 2.3 @@ -0,0 +1,59 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="gcc" 2.7 +VERSION="4.2.2" 2.8 +CATEGORY="extra" 2.9 +SHORT_DESC="The the GNU Compiler Collection." 2.10 +MAINTAINER="pankso@slitaz.org" 2.11 +BUILD_DEPENDS="gawk" 2.12 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 2.13 +WEB_SITE="http://gcc.gnu.org/" 2.14 +WGET_URL="ftp://ftp.irisa.fr/pub/mirrors/gcc.gnu.org/gcc/releases/$PACKAGE-$VERSION/$TARBALL" 2.15 + 2.16 +# Rules to configure and make the package. 2.17 +compile_rules() 2.18 +{ 2.19 + mkdir gcc-build 2.20 + cd gcc-build 2.21 + ../$PACKAGE-$VERSION/configure --prefix=/usr --libexecdir=/usr/lib \ 2.22 + --infodir=/usr/share/info --mandir=/usr/share/man --enable-nls \ 2.23 + --enable-languages=c,c++ --enable-shared --with-system-zlib \ 2.24 + --enable-clocale=gnu --enable-objc-gc --enable-__cxa_atexit \ 2.25 + --enable-threads=posix --with-tune=i486 i486-pc-linux-gnu 2.26 + make bootstrap 2.27 + # Make install in the source tree to help creating derivated pkgs 2.28 + # and keep $_pkg variable set for genpkg. 2.29 + make DESTDIR=$src/_pkg install 2.30 +} 2.31 + 2.32 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.33 +genpkg_rules() 2.34 +{ 2.35 + mkdir -p $fs/usr/share 2.36 + cp -a $_pkg/usr/bin $fs/usr 2.37 + # Copy all libs. Remove libgcc_s.so and libstdc++.so 2.38 + # they goes in gcc-lib-base-$VERSION package. 2.39 + cp -a $_pkg/usr/lib $fs/usr 2.40 + rm $fs/usr/lib/libgcc_s.so* 2.41 + rm $fs/usr/lib/libstdc++.so* 2.42 + # Include files. 2.43 + cp -a $_pkg/usr/include $fs/usr 2.44 + # Strip. 2.45 + strip --strip-debug $fs/usr/bin/* 2>/dev/null 2.46 + strip --strip-debug $fs/usr/lib/*.so* 2.47 + strip --strip-debug $fs/usr/lib/gcc/*/$VERSION/cc* 2.48 +} 2.49 + 2.50 +# Post install commands for Tazpkg. 2.51 +post_install() 2.52 +{ 2.53 + local root 2.54 + root=$1 2.55 + echo "Processing post-install commands..." 2.56 + if [ ! -f "$root/lib/cpp" ]; then 2.57 + ln -s ../usr/bin/cpp $root/lib 2.58 + fi 2.59 + if [ ! -f "$root/usr/bin/cc" ]; then 2.60 + ln -s gcc $root/usr/bin/cc 2.61 + fi 2.62 +}
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/glibc-dev/receipt Fri Dec 14 21:14:40 2007 +0100 3.3 @@ -0,0 +1,30 @@ 3.4 +# SliTaz package receipt. 3.5 + 3.6 +PACKAGE="glibc-dev" 3.7 +VERSION="2.3.6" 3.8 +CATEGORY="extra" 3.9 +SHORT_DESC="The GNU C libraries devel files (Part of SliTaz toolchain)." 3.10 +MAINTAINER="pankso@slitaz.org" 3.11 +DEPENDS="glibc-base" 3.12 +WANTED="glibc" 3.13 +WEB_SITE="http://www.gnu.org/software/libc/" 3.14 +SOURCES="glibc" 3.15 + 3.16 +# Rules to gen a SliTaz package suitable for Tazpkg. 3.17 +# 3.18 +# This package is part of the toolchain. We use list to mkdir and cp files. 3.19 +# 3.20 +genpkg_rules() 3.21 +{ 3.22 + # Copy all and then remove all files specified in stuff/base-files.list. 3.23 + # We get the files from glibc-base package. 3.24 + cp -a $_pkg/* $fs 3.25 + echo -n "Removing all base files..." 3.26 + for file in `cat stuff/base-files.list` 3.27 + do 3.28 + rm -f ${fs}$file 3.29 + done 3.30 + rm -rf $fs/etc 3.31 + rm -rf $fs/usr/share/info 3.32 + status 3.33 +}
4.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 4.2 +++ b/glibc-dev/stuff/base-files.list Fri Dec 14 21:14:40 2007 +0100 4.3 @@ -0,0 +1,269 @@ 4.4 +/etc/ld.so.conf 4.5 +/etc/rpc 4.6 +/etc/ld.so.cache 4.7 +/lib/libpthread-2.3.6.so 4.8 +/lib/libutil-2.3.6.so 4.9 +/lib/libnss_dns-2.3.6.so 4.10 +/lib/libnss_compat-2.3.6.so 4.11 +/lib/ld-2.3.6.so 4.12 +/lib/libcrypt-2.3.6.so 4.13 +/lib/libanl-2.3.6.so 4.14 +/lib/libc-2.3.6.so 4.15 +/lib/libdl-2.3.6.so 4.16 +/lib/libresolv-2.3.6.so 4.17 +/lib/librt-2.3.6.so 4.18 +/lib/libnss_files-2.3.6.so 4.19 +/lib/libnsl-2.3.6.so 4.20 +/lib/libm-2.3.6.so 4.21 +/usr/bin/locale 4.22 +/usr/bin/tzselect 4.23 +/usr/lib/locale/locale-archive 4.24 +/usr/lib/gconv/ANSI_X3.110.so 4.25 +/usr/lib/gconv/gconv-modules 4.26 +/usr/lib/gconv/ISO8859-15.so 4.27 +/usr/lib/gconv/ISO8859-1.so 4.28 +/usr/lib/gconv/ISO8859-2.so 4.29 +/usr/lib/gconv/UNICODE.so 4.30 +/usr/share/locale/locale.alias 4.31 +/usr/share/locale/fr/LC_MESSAGES/libc.mo 4.32 +/usr/share/zoneinfo/UTC 4.33 +/usr/share/zoneinfo/America/Rosario 4.34 +/usr/share/zoneinfo/America/Port-au-Prince 4.35 +/usr/share/zoneinfo/America/Eirunepe 4.36 +/usr/share/zoneinfo/America/Denver 4.37 +/usr/share/zoneinfo/America/Virgin 4.38 +/usr/share/zoneinfo/America/Edmonton 4.39 +/usr/share/zoneinfo/America/Rankin_Inlet 4.40 +/usr/share/zoneinfo/America/Indianapolis 4.41 +/usr/share/zoneinfo/America/Chihuahua 4.42 +/usr/share/zoneinfo/America/Coral_Harbour 4.43 +/usr/share/zoneinfo/America/Guayaquil 4.44 +/usr/share/zoneinfo/America/Cayman 4.45 +/usr/share/zoneinfo/America/Anguilla 4.46 +/usr/share/zoneinfo/America/Dominica 4.47 +/usr/share/zoneinfo/America/Cayenne 4.48 +/usr/share/zoneinfo/America/St_Vincent 4.49 +/usr/share/zoneinfo/America/Santo_Domingo 4.50 +/usr/share/zoneinfo/America/Indiana/Indianapolis 4.51 +/usr/share/zoneinfo/America/Indiana/Marengo 4.52 +/usr/share/zoneinfo/America/Indiana/Vevay 4.53 +/usr/share/zoneinfo/America/Indiana/Knox 4.54 +/usr/share/zoneinfo/America/St_Lucia 4.55 +/usr/share/zoneinfo/America/Tijuana 4.56 +/usr/share/zoneinfo/America/Iqaluit 4.57 +/usr/share/zoneinfo/America/Cancun 4.58 +/usr/share/zoneinfo/America/Cordoba 4.59 +/usr/share/zoneinfo/America/Dawson_Creek 4.60 +/usr/share/zoneinfo/America/Barbados 4.61 +/usr/share/zoneinfo/America/La_Paz 4.62 +/usr/share/zoneinfo/America/Thule 4.63 +/usr/share/zoneinfo/America/Porto_Velho 4.64 +/usr/share/zoneinfo/America/Goose_Bay 4.65 +/usr/share/zoneinfo/America/Scoresbysund 4.66 +/usr/share/zoneinfo/America/Araguaina 4.67 +/usr/share/zoneinfo/America/Knox_IN 4.68 +/usr/share/zoneinfo/America/Kentucky/Louisville 4.69 +/usr/share/zoneinfo/America/Kentucky/Monticello 4.70 +/usr/share/zoneinfo/America/Jujuy 4.71 +/usr/share/zoneinfo/America/Atka 4.72 +/usr/share/zoneinfo/America/Jamaica 4.73 +/usr/share/zoneinfo/America/Antigua 4.74 +/usr/share/zoneinfo/America/Noronha 4.75 +/usr/share/zoneinfo/America/Havana 4.76 +/usr/share/zoneinfo/America/Mendoza 4.77 +/usr/share/zoneinfo/America/Adak 4.78 +/usr/share/zoneinfo/America/Winnipeg 4.79 +/usr/share/zoneinfo/America/Belem 4.80 +/usr/share/zoneinfo/America/Argentina/Cordoba 4.81 +/usr/share/zoneinfo/America/Argentina/Tucuman 4.82 +/usr/share/zoneinfo/America/Argentina/Jujuy 4.83 +/usr/share/zoneinfo/America/Argentina/Mendoza 4.84 +/usr/share/zoneinfo/America/Argentina/ComodRivadavia 4.85 +/usr/share/zoneinfo/America/Argentina/Buenos_Aires 4.86 +/usr/share/zoneinfo/America/Argentina/San_Juan 4.87 +/usr/share/zoneinfo/America/Argentina/Catamarca 4.88 +/usr/share/zoneinfo/America/Argentina/La_Rioja 4.89 +/usr/share/zoneinfo/America/Argentina/Rio_Gallegos 4.90 +/usr/share/zoneinfo/America/Argentina/Ushuaia 4.91 +/usr/share/zoneinfo/America/Guyana 4.92 +/usr/share/zoneinfo/America/Boise 4.93 +/usr/share/zoneinfo/America/North_Dakota/Center 4.94 +/usr/share/zoneinfo/America/Ensenada 4.95 +/usr/share/zoneinfo/America/Godthab 4.96 +/usr/share/zoneinfo/America/Thunder_Bay 4.97 +/usr/share/zoneinfo/America/Anchorage 4.98 +/usr/share/zoneinfo/America/Buenos_Aires 4.99 +/usr/share/zoneinfo/America/Lima 4.100 +/usr/share/zoneinfo/America/Guatemala 4.101 +/usr/share/zoneinfo/America/Danmarkshavn 4.102 +/usr/share/zoneinfo/America/Shiprock 4.103 +/usr/share/zoneinfo/America/Tortola 4.104 +/usr/share/zoneinfo/America/Pangnirtung 4.105 +/usr/share/zoneinfo/America/Recife 4.106 +/usr/share/zoneinfo/America/Hermosillo 4.107 +/usr/share/zoneinfo/America/Halifax 4.108 +/usr/share/zoneinfo/America/Yellowknife 4.109 +/usr/share/zoneinfo/America/Managua 4.110 +/usr/share/zoneinfo/America/Rainy_River 4.111 +/usr/share/zoneinfo/America/Tegucigalpa 4.112 +/usr/share/zoneinfo/America/Toronto 4.113 +/usr/share/zoneinfo/America/Juneau 4.114 +/usr/share/zoneinfo/America/El_Salvador 4.115 +/usr/share/zoneinfo/America/Fort_Wayne 4.116 +/usr/share/zoneinfo/America/Grenada 4.117 +/usr/share/zoneinfo/America/Nipigon 4.118 +/usr/share/zoneinfo/America/Chicago 4.119 +/usr/share/zoneinfo/America/Costa_Rica 4.120 +/usr/share/zoneinfo/America/Aruba 4.121 +/usr/share/zoneinfo/America/Santiago 4.122 +/usr/share/zoneinfo/America/Vancouver 4.123 +/usr/share/zoneinfo/America/Port_of_Spain 4.124 +/usr/share/zoneinfo/America/Boa_Vista 4.125 +/usr/share/zoneinfo/America/Rio_Branco 4.126 +/usr/share/zoneinfo/America/Porto_Acre 4.127 +/usr/share/zoneinfo/America/New_York 4.128 +/usr/share/zoneinfo/America/Regina 4.129 +/usr/share/zoneinfo/America/Yakutat 4.130 +/usr/share/zoneinfo/America/Monterrey 4.131 +/usr/share/zoneinfo/America/Menominee 4.132 +/usr/share/zoneinfo/America/Nome 4.133 +/usr/share/zoneinfo/America/Detroit 4.134 +/usr/share/zoneinfo/America/Nassau 4.135 +/usr/share/zoneinfo/America/Catamarca 4.136 +/usr/share/zoneinfo/America/Inuvik 4.137 +/usr/share/zoneinfo/America/Puerto_Rico 4.138 +/usr/share/zoneinfo/America/Mazatlan 4.139 +/usr/share/zoneinfo/America/Caracas 4.140 +/usr/share/zoneinfo/America/Paramaribo 4.141 +/usr/share/zoneinfo/America/Martinique 4.142 +/usr/share/zoneinfo/America/Asuncion 4.143 +/usr/share/zoneinfo/America/Miquelon 4.144 +/usr/share/zoneinfo/America/Whitehorse 4.145 +/usr/share/zoneinfo/America/Montevideo 4.146 +/usr/share/zoneinfo/America/Grand_Turk 4.147 +/usr/share/zoneinfo/America/Montreal 4.148 +/usr/share/zoneinfo/America/St_Thomas 4.149 +/usr/share/zoneinfo/America/Swift_Current 4.150 +/usr/share/zoneinfo/America/Louisville 4.151 +/usr/share/zoneinfo/America/Phoenix 4.152 +/usr/share/zoneinfo/America/Bogota 4.153 +/usr/share/zoneinfo/America/Manaus 4.154 +/usr/share/zoneinfo/America/Merida 4.155 +/usr/share/zoneinfo/America/Sao_Paulo 4.156 +/usr/share/zoneinfo/America/Maceio 4.157 +/usr/share/zoneinfo/America/Bahia 4.158 +/usr/share/zoneinfo/America/St_Kitts 4.159 +/usr/share/zoneinfo/America/Mexico_City 4.160 +/usr/share/zoneinfo/America/Fortaleza 4.161 +/usr/share/zoneinfo/America/Cuiaba 4.162 +/usr/share/zoneinfo/America/Campo_Grande 4.163 +/usr/share/zoneinfo/America/Belize 4.164 +/usr/share/zoneinfo/America/Guadeloupe 4.165 +/usr/share/zoneinfo/America/Cambridge_Bay 4.166 +/usr/share/zoneinfo/America/Los_Angeles 4.167 +/usr/share/zoneinfo/America/Glace_Bay 4.168 +/usr/share/zoneinfo/America/Montserrat 4.169 +/usr/share/zoneinfo/America/Dawson 4.170 +/usr/share/zoneinfo/America/Curacao 4.171 +/usr/share/zoneinfo/America/Panama 4.172 +/usr/share/zoneinfo/America/St_Johns 4.173 +/usr/share/zoneinfo/Europe/Zagreb 4.174 +/usr/share/zoneinfo/Europe/Copenhagen 4.175 +/usr/share/zoneinfo/Europe/Ljubljana 4.176 +/usr/share/zoneinfo/Europe/Prague 4.177 +/usr/share/zoneinfo/Europe/Chisinau 4.178 +/usr/share/zoneinfo/Europe/Sarajevo 4.179 +/usr/share/zoneinfo/Europe/Dublin 4.180 +/usr/share/zoneinfo/Europe/Sofia 4.181 +/usr/share/zoneinfo/Europe/Brussels 4.182 +/usr/share/zoneinfo/Europe/Vaduz 4.183 +/usr/share/zoneinfo/Europe/Bucharest 4.184 +/usr/share/zoneinfo/Europe/Gibraltar 4.185 +/usr/share/zoneinfo/Europe/Stockholm 4.186 +/usr/share/zoneinfo/Europe/London 4.187 +/usr/share/zoneinfo/Europe/Vienna 4.188 +/usr/share/zoneinfo/Europe/Mariehamn 4.189 +/usr/share/zoneinfo/Europe/Uzhgorod 4.190 +/usr/share/zoneinfo/Europe/Moscow 4.191 +/usr/share/zoneinfo/Europe/San_Marino 4.192 +/usr/share/zoneinfo/Europe/Skopje 4.193 +/usr/share/zoneinfo/Europe/Kaliningrad 4.194 +/usr/share/zoneinfo/Europe/Bratislava 4.195 +/usr/share/zoneinfo/Europe/Nicosia 4.196 +/usr/share/zoneinfo/Europe/Simferopol 4.197 +/usr/share/zoneinfo/Europe/Tiraspol 4.198 +/usr/share/zoneinfo/Europe/Luxembourg 4.199 +/usr/share/zoneinfo/Europe/Belgrade 4.200 +/usr/share/zoneinfo/Europe/Lisbon 4.201 +/usr/share/zoneinfo/Europe/Kiev 4.202 +/usr/share/zoneinfo/Europe/Warsaw 4.203 +/usr/share/zoneinfo/Europe/Tallinn 4.204 +/usr/share/zoneinfo/Europe/Amsterdam 4.205 +/usr/share/zoneinfo/Europe/Tirane 4.206 +/usr/share/zoneinfo/Europe/Samara 4.207 +/usr/share/zoneinfo/Europe/Vatican 4.208 +/usr/share/zoneinfo/Europe/Minsk 4.209 +/usr/share/zoneinfo/Europe/Berlin 4.210 +/usr/share/zoneinfo/Europe/Andorra 4.211 +/usr/share/zoneinfo/Europe/Rome 4.212 +/usr/share/zoneinfo/Europe/Paris 4.213 +/usr/share/zoneinfo/Europe/Madrid 4.214 +/usr/share/zoneinfo/Europe/Belfast 4.215 +/usr/share/zoneinfo/Europe/Monaco 4.216 +/usr/share/zoneinfo/Europe/Helsinki 4.217 +/usr/share/zoneinfo/Europe/Malta 4.218 +/usr/share/zoneinfo/Europe/Athens 4.219 +/usr/share/zoneinfo/Europe/Oslo 4.220 +/usr/share/zoneinfo/Europe/Istanbul 4.221 +/usr/share/zoneinfo/Europe/Vilnius 4.222 +/usr/share/zoneinfo/Europe/Zaporozhye 4.223 +/usr/share/zoneinfo/Europe/Zurich 4.224 +/usr/share/zoneinfo/Europe/Riga 4.225 +/usr/share/zoneinfo/Europe/Budapest 4.226 +/usr/share/zoneinfo/CET 4.227 +/usr/share/i18n/locales/fr_FR 4.228 +/usr/share/i18n/locales/translit_font 4.229 +/usr/share/i18n/locales/translit_hangul 4.230 +/usr/share/i18n/locales/translit_fraction 4.231 +/usr/share/i18n/locales/translit_circle 4.232 +/usr/share/i18n/locales/translit_neutral 4.233 +/usr/share/i18n/locales/iso14651_t1 4.234 +/usr/share/i18n/locales/translit_small 4.235 +/usr/share/i18n/locales/fr_CH 4.236 +/usr/share/i18n/locales/translit_combining 4.237 +/usr/share/i18n/locales/translit_narrow 4.238 +/usr/share/i18n/locales/i18n 4.239 +/usr/share/i18n/locales/translit_wide 4.240 +/usr/share/i18n/locales/translit_cjk_compat 4.241 +/usr/share/i18n/locales/translit_compat 4.242 +/usr/share/i18n/locales/de_CH 4.243 +/usr/share/i18n/charmaps/ISO-8859-1.gz 4.244 +/usr/share/i18n/charmaps/ANSI_X3.110-1983.gz 4.245 +/usr/share/i18n/charmaps/ISO-8859-15.gz 4.246 +/usr/share/i18n/charmaps/ANSI_X3.4-1968.gz 4.247 +/usr/share/i18n/charmaps/ISO-8859-2.gz 4.248 +/lib/libutil.so.1 4.249 +/lib/libnss_files.so.2 4.250 +/lib/libresolv.so.2 4.251 +/lib/ld-linux.so.2 4.252 +/lib/libcrypt.so.1 4.253 +/lib/libnsl.so.1 4.254 +/lib/libpthread.so.0 4.255 +/lib/libm.so.6 4.256 +/lib/libdl.so.2 4.257 +/lib/libnss_dns.so.2 4.258 +/lib/libanl.so.1 4.259 +/lib/libc.so.6 4.260 +/lib/libnss_compat.so.2 4.261 +/lib/librt.so.1 4.262 +/usr/lib/libcrypt.so 4.263 +/usr/lib/libanl.so 4.264 +/usr/lib/libnsl.so 4.265 +/usr/lib/libutil.so 4.266 +/usr/lib/libnss_files.so 4.267 +/usr/lib/libnss_dns.so 4.268 +/usr/lib/libdl.so 4.269 +/usr/lib/libnss_compat.so 4.270 +/usr/lib/libm.so 4.271 +/usr/lib/librt.so 4.272 +/usr/lib/libresolv.so
5.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 5.2 +++ b/glibc-dev/stuff/mkdir.list Fri Dec 14 21:14:40 2007 +0100 5.3 @@ -0,0 +1,6 @@ 5.4 +/lib 5.5 +/sbin 5.6 +/usr/bin 5.7 +/usr/sbin 5.8 +/usr/lib 5.9 +/usr/include
6.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 6.2 +++ b/glibc/receipt Fri Dec 14 21:14:40 2007 +0100 6.3 @@ -0,0 +1,38 @@ 6.4 +# SliTaz package receipt. 6.5 + 6.6 +PACKAGE="glibc" 6.7 +VERSION="2.3.6" 6.8 +CATEGORY="extra" 6.9 +SHORT_DESC="The GNU C libraries. This package is used to compile the libc." 6.10 +MAINTAINER="pankso@slitaz.org" 6.11 +DEPENDS="glibc-base glibc-dev" 6.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 6.13 +WEB_SITE="http://www.gnu.org/software/libc/" 6.14 +WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" 6.15 + 6.16 +# Rules to configure and make the package. 6.17 +compile_rules() 6.18 +{ 6.19 + mkdir glibc-build 6.20 + cd glibc-build 6.21 + ../$PACKAGE-$VERSION/configure --prefix=/usr \ 6.22 + --infodir=/usr/share/info --disable-profile \ 6.23 + --enable-add-ons --enable-kernel=2.6.0 \ 6.24 + --libexecdir=/usr/lib/glibc $CONFIGURE_ARGS 6.25 + make 6.26 + # Install in the build tree and then move all files 6.27 + # to the source tree to keep $src and $_pkg for genpkg. 6.28 + mkdir -p _pkg/etc 6.29 + touch _pkg/etc/ld.so.conf 6.30 + make install_root=$PWD/_pkg install 6.31 + mv _pkg ../$PACKAGE-$VERSION 6.32 +} 6.33 + 6.34 +# Rules to gen a SliTaz package suitable for Tazpkg. 6.35 +# 6.36 +# Just a dir for the meta-package. 6.37 +# 6.38 +genpkg_rules() 6.39 +{ 6.40 + mkdir -p $fs/var 6.41 +}
7.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 7.2 +++ b/make/receipt Fri Dec 14 21:14:40 2007 +0100 7.3 @@ -0,0 +1,29 @@ 7.4 +# SliTaz package receipt. 7.5 + 7.6 +PACKAGE="make" 7.7 +VERSION="3.81" 7.8 +CATEGORY="extra" 7.9 +SHORT_DESC="GNU Make to generate executables and other files from source." 7.10 +MAINTAINER="pankso@slitaz.org" 7.11 +TARBALL="$PACKAGE-$VERSION.tar.gz" 7.12 +WEB_SITE="http://www.gnu.org/software/make/" 7.13 +WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" 7.14 + 7.15 +# Rules to configure and make the package. 7.16 +compile_rules() 7.17 +{ 7.18 + cd $src 7.19 + ./configure --prefix=/usr --infodir=/usr/share/info \ 7.20 + --mandir=/usr/share/man $CONFIGURE_ARGS 7.21 + make 7.22 + make DESTDIR=$PWD/_pkg install 7.23 +} 7.24 + 7.25 +# Rules to gen a SliTaz package suitable for Tazpkg. 7.26 +genpkg_rules() 7.27 +{ 7.28 + mkdir -p $fs/usr/share/locale 7.29 + cp -a $_pkg/usr/bin $fs/usr 7.30 + cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale 7.31 + strip -s $fs/usr/bin/* 7.32 +}