summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/tzdata/PKGBUILD
blob: 544f1c7f66110a76267575523731479c90785965 (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
# $Id: PKGBUILD 8190 2008-08-08 21:11:59Z andyrtr $
# Maintainer: Andreas Radke <andyrtr@archlinux.org>

pkgname=tzdata
pkgver=2008e
pkgrel=10
_tzcode=2008e
_tzdata=2008e
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')
groups=('base')
depends=()
makedepends=()
options=()
source=(ftp://elsie.nci.nih.gov/pub/tzcode${_tzcode}.tar.gz \
        ftp://elsie.nci.nih.gov/pub/${pkgname}${_tzdata}.tar.gz \
        Makefile.patch)
md5sums=('12ec2d85324ddcba39db1471a03f486b'
         '3b4578110a3d193ed9a00d61f27aba28'
         'a64ed97d1fc03c66ee8612c0d9f40507')

build() {
  cd ${srcdir}/

  tar -xf tzcode${_tzcode}.tar.gz  || return 1
  tar -xf ${pkgname}${_tzdata}.tar.gz || return 1

  patch -Np1 -i ../Makefile.patch || return 1

  make || return 1
  make DESTDIR="${pkgdir}" install

  rm ${pkgdir}/usr/share/zoneinfo/localtime
}