void-packages/srcpkgs/tzdata/template
2019-08-19 10:19:31 +02:00

26 lines
1,008 B
Bash

# Template file for 'tzdata'
pkgname=tzdata
version=2019b
revision=1
archs=noarch
wrksrc=tzdata
create_wrksrc=yes
hostmakedepends="tzutils"
short_desc="Time zone and daylight-saving time data"
maintainer="Enno Boland <gottox@voidlinux.org>"
license="Public Domain"
homepage="http://www.iana.org/time-zones"
distfiles="http://www.iana.org/time-zones/repository/releases/tzdata${version}.tar.gz"
checksum=05d9092c90dcf9ec4f3ccfdea80c7dcea5e882b3b105c3422da172aaa9a50c64
do_install() {
local timezones="africa antarctica asia australasia europe northamerica \
southamerica pacificnew etcetera backward systemv factory"
zic -y ./yearistype -d ${DESTDIR}/usr/share/zoneinfo ${timezones}
zic -y ./yearistype -d ${DESTDIR}/usr/share/zoneinfo/posix ${timezones}
zic -y ./yearistype -d ${DESTDIR}/usr/share/zoneinfo/right -L leapseconds ${timezones}
zic -y ./yearistype -d ${DESTDIR}/usr/share/zoneinfo -p America/New_York
install -m444 -t ${DESTDIR}/usr/share/zoneinfo iso3166.tab zone1970.tab zone.tab
}