23 lines
513 B
Plaintext
23 lines
513 B
Plaintext
# Description: Sources for Time Zone and Daylight Saving Time Data
|
|
# URL: https://data.iana.org/time-zones/tz-link.html
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
|
|
|
name=tzdata
|
|
version=2023c
|
|
release=1
|
|
source=(https://data.iana.org/time-zones/releases/tzdb-$version.tar.lz)
|
|
|
|
build() {
|
|
cd tzdb-$version
|
|
|
|
make CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS"
|
|
make DESTDIR=$PKG install
|
|
|
|
# provided by man-pages
|
|
rm -r $PKG/usr/share/man/man{5,8}
|
|
|
|
# conflict with glibc
|
|
rm $PKG/etc/localtime
|
|
rmdir $PKG/etc
|
|
}
|