void-packages/srcpkgs/tzdata/template
2015-06-15 07:31:11 +02:00

27 lines
998 B
Bash

# Template file for 'tzdata'
pkgname=tzdata
wrksrc=${pkgname}
create_wrksrc=yes
version=2015e
revision=1
noarch=yes
hostmakedepends="tzutils"
homepage="http://www.iana.org/time-zones"
short_desc="Time zone and daylight-saving time data"
maintainer="Juan RP <xtraeme@voidlinux.eu>"
license="GPL-2"
distfiles="http://www.iana.org/time-zones/repository/releases/tzdata${version}.tar.gz"
checksum=ffc9b5d38abda8277aa479e3f75aa7668819d0977cd1a0c8ef3b09128334ba6f
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
}