wok-current annotate tzdata/receipt @ rev 17402
Try to 'arm'-ize tzdata, slitaz-i18n, and locale-* packages
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Fri Nov 28 01:22:40 2014 +0200 (2014-11-28) |
parents | 8c0bb1fa7d90 |
children | 6210409633ba |
rev | line source |
---|---|
al@16463 | 1 # SliTaz package receipt. |
al@16463 | 2 |
al@16463 | 3 PACKAGE="tzdata" |
al@17296 | 4 VERSION="2014i" |
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@17402 | 12 HOST_ARCH="i486 arm" |
al@17402 | 13 |
al@16463 | 14 DEPENDS="glibc" |
al@16463 | 15 BUILD_DEPENDS="glibc-dev" |
al@16463 | 16 |
al@16463 | 17 # Rules to configure and make the package. |
al@16463 | 18 compile_rules() |
al@16463 | 19 { |
al@16463 | 20 ZONEINFO=$install/usr/share/zoneinfo |
al@16463 | 21 mkdir -p $ZONEINFO/posix $ZONEINFO/right |
al@16463 | 22 |
al@16463 | 23 tzs="etcetera southamerica northamerica europe africa antarctica asia \ |
al@16464 | 24 australasia backward pacificnew systemv" |
al@16463 | 25 zic -L /dev/null -d $ZONEINFO -y "sh yearistype.sh" $tzs |
al@16463 | 26 zic -L /dev/null -d $ZONEINFO/posix -y "sh yearistype.sh" $tzs |
al@16463 | 27 zic -L leapseconds -d $ZONEINFO/right -y "sh yearistype.sh" $tzs |
al@16463 | 28 |
al@16997 | 29 cp -a $src/zone.tab $src/zone1970.tab $src/iso3166.tab $ZONEINFO |
al@16463 | 30 zic -d $ZONEINFO -p America/New_York |
al@16463 | 31 } |
al@16463 | 32 |
al@16463 | 33 # Rules to gen a SliTaz package suitable for Tazpkg. |
al@16463 | 34 genpkg_rules() |
al@16463 | 35 { |
al@16463 | 36 cp -a $install/* $fs |
al@16463 | 37 |
al@16463 | 38 . $WOK/slitaz-i18n/stuff/locale-pack.conf |
al@16463 | 39 for locale in $LOCALE_PACK; do |
al@16463 | 40 echo "* Removing files provided by locale-$locale..." |
al@16463 | 41 files=$(cat $WOK/locale-$locale/taz/locale-$locale-*/files.list | \ |
al@16463 | 42 grep /usr/share/zoneinfo/) |
al@16463 | 43 for file in $files; do |
al@16463 | 44 [ -e $fs/$file ] && rm -f $fs$file |
al@16463 | 45 done |
al@16463 | 46 done |
al@16463 | 47 } |