wok view glibc-base/receipt @ rev 11756

up xlockmore (5.38) and added desktop files
author Samuel Trassare <samuel_trassare@yahoo.com>
date Wed Feb 22 10:26:36 2012 -0800 (2012-02-22)
parents 311258b900d3
children 590cd40daccf
line source
1 # SliTaz package receipt.
3 PACKAGE="glibc-base"
4 VERSION="2.13"
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 it_IT 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 # Remove an eventual locale-archive since we use directories.
40 pre_install()
41 {
42 rm -f $1/usr/lib/locale/locale-archive
43 }