# Description: Sources for Time Zone and Daylight Saving Time Data # URL: ftp://ftp.iana.org/tz/code/tz-link.htm # Maintainer: CRUX System Team, core-ports at crux dot nu # Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu name=tzdata version=2016j 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 zic_host-makefile.patch) build() { # first compile native zic binary make CFLAGS="" CC="gcc" zic cp zic zic_host make clean patch -p1 -i $SRC/zic_host-makefile.patch make -j1 install \ CFLAGS="$CFLAGS" \ DESTDIR=$PKG \ TOPDIR=/usr \ TZDIR=/usr/share/zoneinfo \ ETCDIR=/usr/sbin \ MANDIR=/usr/share/man \ CC=$CC AR=$AR # provided by man-pages rm -r $PKG/usr/share/man/man{5,8} # move tzselect to /usr/bin install -d $PKG/usr/bin mv $PKG/usr/{sbin/tzselect,bin} }