28 lines
1.1 KiB
Text
28 lines
1.1 KiB
Text
# Template build file for 'tzdata'.
|
|
pkgname=tzdata
|
|
wrksrc=${pkgname}
|
|
create_wrksrc=yes
|
|
version=2015a
|
|
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@gmail.com>"
|
|
license="GPL-2"
|
|
distfiles="http://www.iana.org/time-zones/repository/releases/tzdata${version}.tar.gz"
|
|
checksum=c52490917d00a8e7fc9b5f0b1b65ef6ec76d612b5b20c81bf86a04147af18e4c
|
|
|
|
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}
|
|
|
|
# generate leapseconds file
|
|
awk -f leapseconds.awk leap-seconds.list > leapseconds && echo "leapseconds file generated"
|
|
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
|
|
}
|