blob: 7acb7d4347fc4be6459fcddcb78a138f118503b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Description: Sources for Time Zone and Daylight Saving Time Data
# URL: http://www.iana.org/time-zones
# Maintainer: IANA http://www.iana.org/
# Packager: piernov <piernov@piernov.org>
name=tzdata
version=2012e
release=1
source=(http://www.iana.org/time-zones/repository/releases/$name$version.tar.gz
http://www.iana.org/time-zones/repository/releases/tzcode$version.tar.gz
tzcode-makefile.patch)
build() {
patch -p1 -i $SRC/tzcode-makefile.patch
make
make DESTDIR=$PKG MANDIR=$PKG/usr/share/man install
}
|