wok annotate tzdata/receipt @ rev 20993

gpicview: modified TARBALL
author Hans-G?nter Theisgen
date Thu Mar 07 17:13:01 2019 +0100 (2019-03-07)
parents 50333240ef8e
children 2fb468a8fde8
rev   line source
al@16463 1 # SliTaz package receipt.
al@16463 2
al@16463 3 PACKAGE="tzdata"
al@19522 4 VERSION="2016j"
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"
pascal@17718 15 # genpkg_rules expect some locale-* build tree
pascal@17718 16 BUILD_DEPENDS="glibc-dev locale-fr"
al@16463 17
al@16463 18 # Rules to configure and make the package.
al@16463 19 compile_rules()
al@16463 20 {
al@16463 21 ZONEINFO=$install/usr/share/zoneinfo
al@16463 22 mkdir -p $ZONEINFO/posix $ZONEINFO/right
al@16463 23
al@16463 24 tzs="etcetera southamerica northamerica europe africa antarctica asia \
al@16464 25 australasia backward pacificnew systemv"
al@18862 26 zic -L /dev/null -d $ZONEINFO -y "sh yearistype.sh" $tzs
al@18862 27 zic -L /dev/null -d $ZONEINFO/posix -y "sh yearistype.sh" $tzs
al@18862 28 zic -L leapseconds -d $ZONEINFO/right -y "sh yearistype.sh" $tzs
al@16463 29
al@16997 30 cp -a $src/zone.tab $src/zone1970.tab $src/iso3166.tab $ZONEINFO
al@16463 31 zic -d $ZONEINFO -p America/New_York
al@16463 32 }
al@16463 33
al@16463 34 # Rules to gen a SliTaz package suitable for Tazpkg.
al@16463 35 genpkg_rules()
al@16463 36 {
al@16463 37 cp -a $install/* $fs
al@16463 38
al@16463 39 . $WOK/slitaz-i18n/stuff/locale-pack.conf
al@16463 40 for locale in $LOCALE_PACK; do
al@19501 41 [ -d "$WOK/locale-$locale" ] || continue
al@16463 42 echo "* Removing files provided by locale-$locale..."
al@16463 43 files=$(cat $WOK/locale-$locale/taz/locale-$locale-*/files.list | \
al@16463 44 grep /usr/share/zoneinfo/)
al@16463 45 for file in $files; do
al@16463 46 [ -e $fs/$file ] && rm -f $fs$file
al@16463 47 done
al@16463 48 done
al@16463 49 }