wok view locale-ru/receipt @ rev 9700

Replaced all ../stuff with $stuff.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun May 08 09:01:58 2011 +0000 (2011-05-08)
parents d42b38d61b43
children 7b13b3b4b836
line source
1 # SliTaz package receipt
3 PACKAGE="locale-ru"
4 VERSION="1.1"
5 CATEGORY="system-tools"
6 SHORT_DESC="Russian 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="ru"
13 LOCALEDEF="ru_RU"
14 CHARMAP="UTF-8"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 . $WOK/slitaz-i1$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-i1$stuff/locale-pack.functions
31 . $WOK/slitaz-i1$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 }