void-packages/srcpkgs/tzdata/template
2016-11-23 20:45:08 +00:00

26 lines
1,006 B
Bash

# Template file for 'tzdata'
pkgname=tzdata
version=2016j
revision=1
wrksrc=${pkgname}
create_wrksrc=yes
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="Public Domain"
distfiles="http://www.iana.org/time-zones/repository/releases/tzdata${version}.tar.gz"
checksum=f5ee4e0f115f6c2faee1c4b16193a97338cbd1b503f2cea6c5a768c82ff39dc8
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
}