wok view slitaz-i18n/receipt @ rev 19455

slitaz-i18n: auto recook tzdata at the end
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Oct 21 13:06:24 2016 +0300 (2016-10-21)
parents ec332cdcdbc1
children 75f2bc86c03f
line source
1 # SliTaz package receipt
3 PACKAGE="slitaz-i18n"
4 VERSION="5.0"
5 CATEGORY="meta"
6 SHORT_DESC="SliTaz internationalization meta package to build locale pack."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="http://www.slitaz.org/"
10 HOST_ARCH="i486 arm"
12 # Bdeps ensure packages are built so we can get generated po files.
13 BUILD_DEPENDS="acl alsaplayer alsa-utils asunder atk attr dialog e2fsprogs \
14 elfutils epdfview galculator gdk-pixbuf glib glibc-base glib-networking \
15 gparted gpicview gtk+ gvfs kbd-base leafpad libfm libgnutls libgpg-error \
16 libidn liblzma libwebkit lxappearance lxinput lxpanel lxrandr lxsession \
17 lxsession-edit lxtask mhwaveedit midori mtpaint nano obconf openbox parted \
18 pcmanfm polkit popt sakura shared-mime-info udisks2 util-linux-blkid \
19 vorbis-tools vte xorg-xkeyboard-config yad tzdata"
21 # Handle slitaz arch: /etc/slitaz/slitaz.conf
22 case "$SLITAZ_ARCH" in
23 arm*) BUILD_DEPENDS="" ;;
24 esac
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/share/doc/slitaz
30 . $stuff/locale-pack.conf
31 for p in $CORE_PKGS; do
32 cook $p
33 done
34 # Cook all locale pack.
35 for i in $LOCALE_PACK; do
36 cook locale-$i
37 done
38 # Recook tzdata package: we move files from tzdata to locale-* packages
39 cook tzdata
41 cat > $fs/usr/share/doc/slitaz/i18n.txt <<EOT
42 SliTaz i18n information
43 ================================================================================
45 This package provides the necessary functions and configs for the SliTaz locale
46 pack. SliTaz uses UTF-8 by default and tazlocale (from SliTaz tools) to
47 configure the system language.
50 Translated packages files included in the core languages pack (from upstream):
51 ----
52 $(echo $CORE_PKGS | fold -s)
53 ----
55 SliTaz i18n project coordination is done on the SCN and doc is on the website:
57 http://www.slitaz.org/i18n.php
60 ================================================================================
61 EOT
62 }