void-packages/srcpkgs/tzdata/template

40 lines
1.4 KiB
Plaintext
Raw Normal View History

# Template build file for 'tzdata'.
pkgname=tzdata
wrksrc=${pkgname}
create_wrksrc=yes
2013-09-26 09:55:34 +02:00
version=2013f
2012-07-23 05:19:29 +02:00
revision=1
homepage="http://www.iana.org/time-zones"
short_desc="Time zone and daylight-saving time data"
maintainer="Juan RP <xtraeme@gmail.com>"
2011-10-10 23:27:01 +02:00
license="GPL-2"
2012-09-18 10:39:28 +02:00
distfiles="http://www.iana.org/time-zones/repository/releases/tzdata${version}.tar.gz"
2013-09-26 09:55:34 +02:00
checksum=5b72ed29bea75e0b59cbd3f575db0aac62f96a2a36e652725f674a92a95d4ada
long_desc="
This package contains data required for the implementation of standard
local time for many representative locations around the globe. It is
updated periodically to reflect changes made by political bodies to time
zone boundaries, UTC offsets, and daylight-saving rules."
2012-09-18 10:39:28 +02:00
do_install() {
local timezones="africa antarctica asia australasia europe northamerica \
southamerica pacificnew etcetera backward systemv \
factory solar87 solar88 solar89"
2012-07-23 05:19:29 +02:00
2012-09-18 10:39:28 +02:00
zic -y ./yearistype -d ${DESTDIR}/usr/share/zoneinfo ${timezones}
zic -y ./yearistype -d ${DESTDIR}/usr/share/zoneinfo/posix ${timezones}
2013-09-26 09:58:15 +02:00
# generate leapseconds file
awk -f leapseconds.awk leap-seconds.list > leapseconds && echo "leapseconds file generated"
2012-09-18 10:39:28 +02:00
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 zone.tab
}
tzdata_package() {
noarch="yes"
pkg_install() {
2013-04-24 09:27:51 +02:00
vmove all
}
}