wok view glibc-base/receipt @ rev 617

busybox: typos (patch compatibility busybox/patch 1.7.3)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Apr 19 11:55:34 2008 +0000 (2008-04-19)
parents 77220d625e1f
children 90aff787d4cc
line source
1 # SliTaz package receipt.
3 PACKAGE="glibc-base"
4 VERSION="2.7"
5 CATEGORY="base-system"
6 SHORT_DESC="GNU libc minimal libraries for SliTaz based system."
7 WANTED="glibc"
8 MAINTAINER="pankso@slitaz.org"
10 # Rules to gen a SliTaz package suitable for Tazpkg.
11 #
12 # Full glibc is very long to compile (see package glibc for more
13 # informations). You can use the precompiled package available on
14 # SliTaz mirror to build a distro without recompiling glibc.
15 #
16 genpkg_rules()
17 {
18 # Mkdir's.
19 for dir in `cat stuff/mkdir.list`
20 do
21 mkdir -p ${fs}$dir
22 done
23 # Copy all files specified in stuff/files.list. We get the files
24 # from glibc package.
25 for file in `cat stuff/wanted-files.list`
26 do
27 cp -a ${_pkg}$file ${fs}$file
28 done
30 # Gen locale files (see also locale-pack).
31 #
32 mkdir -p $fs/usr/lib/locale
33 localedef -i fr_FR -c -f ISO-8859-1 $fs/usr/lib/locale/fr_FR
34 }
36 # Call ldconfig and remove old glibc-2.3.6 files.
37 post_install()
38 {
39 local root
40 root=$1
41 ldconfig
42 rm -f $root/lib/*2.3.6.so
43 rm -f $root/usr/lib/locale/locale-archive
44 }