blob: 5eb3faec6881ea19429af23422ac634e1e305cc9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
# Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net>
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=tzdata
pkgver=2016b
_tzcodever=2016b
_ptzver=0.5
pkgrel=0
pkgdesc="Timezone data"
url="http://www.twinsun.com/tz/tz-link.htm"
arch="all"
license="Public Domain"
depends=""
depends_dev=""
makedepends=""
install=""
subpackages="$pkgname-doc"
source="http://www.iana.org/time-zones/repository/releases/tzcode$_tzcodever.tar.gz
http://www.iana.org/time-zones/repository/releases/tzdata$pkgver.tar.gz
http://dev.alpinelinux.org/archive/posixtz/posixtz-$_ptzver.tar.xz
0001-posixtz-fix-up-lseek.patch"
_builddir="$srcdir"
_timezones="africa antarctica asia australasia europe northamerica \
southamerica pacificnew etcetera backward systemv factory"
build() {
cd "$_builddir"
make cc="${CC:-gcc}" CFLAGS="$CFLAGS -DHAVE_STDINT_H=1"
TZDIR="/usr/share/zoneinfo" || return 1
cd "$srcdir"/posixtz-$_ptzver
make posixtz || return 1
}
package() {
cd "$_builddir"
./zic -y ./yearistype -d "$pkgdir"/usr/share/zoneinfo ${_timezones}
./zic -y ./yearistype -d "$pkgdir"/usr/share/zoneinfo/right -L leapseconds ${_timezones}
#./zic -y ./yearistype -d "$pkgdir"/usr/share/zoneinfo/posix ${_timezones}
./zic -y ./yearistype -d "$pkgdir"/usr/share/zoneinfo -p America/New_York
install -m444 -t "$pkgdir"/usr/share/zoneinfo iso3166.tab zone1970.tab zone.tab
mkdir -p "$pkgdir"/usr/sbin
install -m755 zic zdump "$pkgdir"/usr/sbin || return 1
mkdir -p "$pkgdir"/usr/share/man/man8
install -m644 zic.8 zdump.8 "$pkgdir"/usr/share/man/man8 || return 1
rm -f "$pkgdir"/usr/share/zoneinfo/localtime || return 1
install -Dm755 "$srcdir"/posixtz-$_ptzver/posixtz \
"$pkgdir"/usr/bin/posixtz || return 1
}
md5sums="527e73bc90c70746799d61006bcf038e tzcode2016b.tar.gz
f638ec0d4d7a17f001ce475860255c85 tzdata2016b.tar.gz
80f8ae1df19dd28e1c8b192c6ea7b836 posixtz-0.5.tar.xz
ca177ded459c9d9c543b5d6ffcc6d6ac 0001-posixtz-fix-up-lseek.patch"
sha256sums="e935c4fe78b5c5da3791f58f3ab7f07fb059a7c71d6b62b69ef345211ae5dfa7 tzcode2016b.tar.gz
6392091d92556a32de488ea06a055c51bc46b7d8046c8a677f0ccfe286b3dbdc tzdata2016b.tar.gz
e0a79e0922be2da686a1888d79cd253baaf81c2f30b4378fbbcf9ff9d632aab5 posixtz-0.5.tar.xz
4e7496c015878226659c45f22adf3d556692993465c4b837a6f92829fede8b71 0001-posixtz-fix-up-lseek.patch"
sha512sums="53f7405fd0466f5acc5d1dd590546abb6e3f4240d6a78ce7e965908d9310e8b8686c8fbe887947c513a4de65e3e3fc038d64215a330267397f37e6efce71f0b8 tzcode2016b.tar.gz
6d30215ba3289a5b85a632d635b76a54c3c08d97e426d6bd89f83c4efd252e43959593b21cca9d2b185f3845358908946cc308365accbee94f126ad3057cf838 tzdata2016b.tar.gz
68dbaab9f4aef166ac2f2d40b49366527b840bebe17a47599fe38345835e4adb8a767910745ece9c384b57af815a871243c3e261a29f41d71f8054df3061b3fd posixtz-0.5.tar.xz
f54ce213d74c5a8387e1a7c56299bc6eee65a035772288222128abc249a112067b8791b88b45c342b2d4d8d12e9e4f1f2f5c92c5de67f8b6413b1ebf1d7de467 0001-posixtz-fix-up-lseek.patch"
|