36 lines
1.3 KiB
Text
36 lines
1.3 KiB
Text
# Template build file for 'tzdata'.
|
|
pkgname=tzdata
|
|
wrksrc=${pkgname}
|
|
create_wrksrc=yes
|
|
version=2013c
|
|
revision=1
|
|
homepage="http://www.iana.org/time-zones"
|
|
short_desc="Time zone and daylight-saving time data"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
license="GPL-2"
|
|
distfiles="http://www.iana.org/time-zones/repository/releases/tzdata${version}.tar.gz"
|
|
checksum=e597a7eb239155eb2247fd4788f7fa10bf21d6469961200a6ca202f19cc15c87
|
|
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."
|
|
|
|
do_install() {
|
|
local timezones="africa antarctica asia australasia europe northamerica \
|
|
southamerica pacificnew etcetera backward systemv \
|
|
factory solar87 solar88 solar89"
|
|
|
|
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 zone.tab
|
|
}
|
|
|
|
tzdata_package() {
|
|
noarch="yes"
|
|
pkg_install() {
|
|
vmove all
|
|
}
|
|
}
|