blob: 2815732c9925ec782b42f78270e6a2601a4564a2 (
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
|
# $Id: PKGBUILD 114729 2011-03-15 19:46:03Z andyrtr $
# Maintainer: Andreas Radke <andyrtr@archlinux.org>
pkgname=tzdata
pkgver=2011d
pkgrel=1
_tzcode=2011d
_tzdata=2011d
pkgdesc="Sources for time zone and daylight saving time data"
arch=('i686' 'x86_64')
url="http://www.twinsun.com/tz/tz-link.htm"
license=('GPL')
depends=()
makedepends=()
optdepends=('sh: required by tzselect')
options=('!emptydirs')
source=(ftp://elsie.nci.nih.gov/pub/tzcode${_tzcode}.tar.gz \
ftp://elsie.nci.nih.gov/pub/${pkgname}${_tzdata}.tar.gz \
Makefile.patch)
md5sums=('95095242ee368e6a7e107f154590ac11'
'03c5793502b7c41985edd73146bf7e36'
'a64ed97d1fc03c66ee8612c0d9f40507')
build() {
cd ${srcdir}
tar -xf tzcode${_tzcode}.tar.gz
tar -xf ${pkgname}${_tzdata}.tar.gz
patch -Np1 -i "${srcdir}/Makefile.patch"
make
}
package() {
cd ${srcdir}
make DESTDIR="${pkgdir}" install
rm "${pkgdir}/usr/share/zoneinfo/localtime"
}
|