wok view locale-cs/receipt @ rev 10713

v4l-dvb: fix kernel source path and clean receipt
author Christophe Lincoln <pankso@slitaz.org>
date Sat May 28 19:06:33 2011 +0200 (2011-05-28)
parents d1768332cee0
children e63d22f12936
line source
1 # SliTaz package receipt
3 PACKAGE="locale-cs"
4 VERSION="2.0"
5 CATEGORY="system-tools"
6 SHORT_DESC="Czech locale pack."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="glibc-base"
9 BUILD_DEPENDS="glibc glibc-locale slitaz-i18n"
10 WEB_SITE="http://www.slitaz.org/"
12 LOCALE="cs"
13 LOCALEDEF="cs_CZ"
14 CHARMAP="UTF-8"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 . $WOK/slitaz-i18n/stuff/locale-pack.conf
20 # Ensure packages are built.
21 for pkg in $CORE_PKGS
22 do
23 [ -d $WOK/$pkg/taz ] || tazwok cook $pkg
24 done
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 . $WOK/slitaz-i18n/stuff/locale-pack.functions
31 . $WOK/slitaz-i18n/stuff/locale-pack.conf
32 PKG_NAME="$PACKAGE"
33 PKG_VERS="$VERSION"
34 mk_locale_dir
35 get_slitaz_messages
36 get_core_messages
37 PACKAGE="$PKG_NAME"
38 VERSION="$PKG_VERS"
39 }
41 # Back to C if it's the last used locale.
42 post_remove()
43 {
44 if grep -q $LOCALEDEF /etc/locale.conf; then
45 echo "LANG=C" > /etc/locale.conf
46 echo "LC_ALL=C" >> /etc/locale.conf
47 fi
48 }