wok view glibc-base/receipt @ rev 5520

php: enable curl in compile options
author Rohit Joshi <jozee@slitaz.org>
date Mon May 10 12:38:42 2010 -0400 (2010-05-10)
parents 2c46ae2cb20c
children 8f591bab8b6f
line source
1 # SliTaz package receipt.
3 PACKAGE="glibc-base"
4 VERSION="2.11.1"
5 CATEGORY="base-system"
6 SHORT_DESC="GNU libc minimal libraries and UTF-8 support for SliTaz."
7 WEB_SITE="http://www.gnu.org/software/libc/"
8 WANTED="glibc"
9 MAINTAINER="pankso@slitaz.org"
11 DEFAULT_LOCALE="de_DE en_US en_GB es_ES fr_FR pt_BR pt_PT ru_RU"
13 # Rules to gen a SliTaz package suitable for Tazpkg.
14 #
15 # Full glibc is very long to compile (see package glibc for more
16 # informations). You can use the precompiled package available on
17 # SliTaz mirror to build a distro without recompiling glibc.
18 #
19 genpkg_rules()
20 {
21 # Mkdir's.
22 for dir in `cat stuff/mkdir.list`
23 do
24 mkdir -p ${fs}$dir
25 done
26 # Copy all files specified in stuff/files.list. We get the files
27 # from glibc package.
28 for file in `cat stuff/wanted-files.list`
29 do
30 cp -a ${_pkg}$file ${fs}$file
31 done
32 # i18n
33 for i in $DEFAULT_LOCALE
34 do
35 cp $_pkg/usr/share/i18n/locales/$i $fs/usr/share/i18n/locales
36 done
37 }
39 # Call ldconfig and remove old glibc-2.3.6 (slitaz 1.0) and glibc-2.7
40 # files.
41 pre_install()
42 {
43 rm -f $1/usr/lib/locale/locale-archive
44 }
46 post_install()
47 {
48 rm -f $1/lib/*2.3.6.so
49 rm -f $1/lib/*2.7.so
50 rm -f $1/lib/*2.9.so
51 }