23 lines
591 B
Bash
23 lines
591 B
Bash
# Template file for 'tzutils'
|
|
pkgname=tzutils
|
|
version=2018d
|
|
revision=1
|
|
wrksrc="tz-${version}"
|
|
homepage="http://www.iana.org/time-zones"
|
|
short_desc="Time zone and daylight-saving time utilities"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="Public Domain"
|
|
distfiles="https://github.com/eggert/tz/archive/${version}.tar.gz"
|
|
checksum=1880517b04fe256d0f80ffc5778f9e68ff3b8f58a292bec9f5e1d373b957da16
|
|
|
|
do_build() {
|
|
make TZDIR=/usr/share/zoneinfo CC=$CC CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS"
|
|
}
|
|
do_install() {
|
|
vbin zic
|
|
vbin zdump
|
|
vbin tzselect
|
|
vman zic.8
|
|
vman zdump.8
|
|
vman tzselect.8
|
|
}
|