2009-02-17 12:59:58 +00:00
|
|
|
# Template build file for 'tzdata'.
|
2009-01-28 15:06:47 +00:00
|
|
|
pkgname=tzdata
|
|
|
|
wrksrc=${pkgname}
|
2010-01-04 15:07:17 +00:00
|
|
|
create_wrksrc=yes
|
2014-03-10 19:39:31 +00:00
|
|
|
version=2014a
|
|
|
|
revision=1
|
2014-01-01 15:10:11 +00:00
|
|
|
noarch="yes"
|
2012-01-12 11:17:00 +00:00
|
|
|
homepage="http://www.iana.org/time-zones"
|
2009-01-28 15:06:47 +00:00
|
|
|
short_desc="Time zone and daylight-saving time data"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2011-10-10 21:27:01 +00:00
|
|
|
license="GPL-2"
|
2012-09-18 08:39:28 +00:00
|
|
|
distfiles="http://www.iana.org/time-zones/repository/releases/tzdata${version}.tar.gz"
|
2014-03-10 19:39:31 +00:00
|
|
|
checksum=7cff254ce85e11b21c994b284bccd1e12ecda9dadf947fbb32e1912fd520e8b1
|
2009-01-28 15:06:47 +00:00
|
|
|
|
2012-09-18 08:39:28 +00:00
|
|
|
do_install() {
|
|
|
|
local timezones="africa antarctica asia australasia europe northamerica \
|
2013-12-21 06:11:11 +00:00
|
|
|
southamerica pacificnew etcetera backward systemv factory"
|
2012-07-23 03:19:29 +00:00
|
|
|
|
2012-09-18 08:39:28 +00:00
|
|
|
zic -y ./yearistype -d ${DESTDIR}/usr/share/zoneinfo ${timezones}
|
|
|
|
zic -y ./yearistype -d ${DESTDIR}/usr/share/zoneinfo/posix ${timezones}
|
2013-09-26 07:58:15 +00:00
|
|
|
|
|
|
|
# generate leapseconds file
|
|
|
|
awk -f leapseconds.awk leap-seconds.list > leapseconds && echo "leapseconds file generated"
|
2012-09-18 08:39:28 +00: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
|
2010-01-04 15:07:17 +00:00
|
|
|
}
|