wok annotate tzdata/receipt @ rev 17112

tzdata: up (2014g).
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Sep 02 00:45:04 2014 +0300 (2014-09-02)
parents 5de6ded3cc84
children a0ea0f119db9
rev   line source
al@16463 1 # SliTaz package receipt.
al@16463 2
al@16463 3 PACKAGE="tzdata"
al@17112 4 VERSION="2014g"
al@16463 5 CATEGORY="base-system"
al@16463 6 SHORT_DESC="Time Zone Database"
al@16463 7 MAINTAINER="al.bobylev@gmail.com"
al@16463 8 LICENSE="PublicDomain"
al@16463 9 WEB_SITE="http://www.iana.org/time-zones"
al@16463 10 TARBALL="$PACKAGE$VERSION.tar.gz"
al@16463 11 WGET_URL="ftp://ftp.iana.org/tz/releases/$TARBALL"
al@16463 12 DEPENDS="glibc"
al@16463 13 BUILD_DEPENDS="glibc-dev"
al@16463 14
al@16463 15 # Rules to configure and make the package.
al@16463 16 compile_rules()
al@16463 17 {
al@16463 18 ZONEINFO=$install/usr/share/zoneinfo
al@16463 19 mkdir -p $ZONEINFO/posix $ZONEINFO/right
al@16463 20
al@16463 21 tzs="etcetera southamerica northamerica europe africa antarctica asia \
al@16464 22 australasia backward pacificnew systemv"
al@16463 23 zic -L /dev/null -d $ZONEINFO -y "sh yearistype.sh" $tzs
al@16463 24 zic -L /dev/null -d $ZONEINFO/posix -y "sh yearistype.sh" $tzs
al@16463 25 zic -L leapseconds -d $ZONEINFO/right -y "sh yearistype.sh" $tzs
al@16463 26
al@16997 27 cp -a $src/zone.tab $src/zone1970.tab $src/iso3166.tab $ZONEINFO
al@16463 28 zic -d $ZONEINFO -p America/New_York
al@16463 29 }
al@16463 30
al@16463 31 # Rules to gen a SliTaz package suitable for Tazpkg.
al@16463 32 genpkg_rules()
al@16463 33 {
al@16463 34 cp -a $install/* $fs
al@16463 35
al@16463 36 . $WOK/slitaz-i18n/stuff/locale-pack.conf
al@16463 37 for locale in $LOCALE_PACK; do
al@16463 38 echo "* Removing files provided by locale-$locale..."
al@16463 39 files=$(cat $WOK/locale-$locale/taz/locale-$locale-*/files.list | \
al@16463 40 grep /usr/share/zoneinfo/)
al@16463 41 for file in $files; do
al@16463 42 [ -e $fs/$file ] && rm -f $fs$file
al@16463 43 done
al@16463 44 done
al@16463 45 }