summaryrefslogtreecommitdiff
path: root/community/perl-datetime/PKGBUILD
blob: e96c8ac145ee7d4d410ce2a6b300aeab4c053698 (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
# $Id: PKGBUILD 76996 2012-10-03 07:10:45Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: François Charette <firmicus ατ gmx δοτ net>

pkgname=perl-datetime
pkgver=0.77
pkgrel=1
pkgdesc="A complete, easy to use date and time object"
arch=('i686' 'x86_64')
url="http://search.cpan.org/dist/DateTime"
license=('GPL' 'PerlArtistic')
depends=('perl-datetime-timezone>=0.59' 'perl-datetime-locale>=0.41'
	 'perl-params-validate>=0.76' 'perl-math-round')
LC_NUMERIC=C
provides=("perl-datetime=`printf %.4f $pkgver`")
options=('!emptydirs')
source=(http://www.cpan.org/authors/id/D/DR/DROLSKY/DateTime-$pkgver.tar.gz)
md5sums=('1c35bb64f0a261cd3ab4cc161726290a')

build() {
  cd  $srcdir/DateTime-$pkgver
  perl Build.PL installdirs=vendor destdir="$pkgdir/"
  ./Build
}

check() {
  cd  $srcdir/DateTime-$pkgver
#  ./Build test
  true
}

package() {
  cd  $srcdir/DateTime-$pkgver
  ./Build install
  find $pkgdir -name '.packlist' -delete
  find $pkgdir -name '*.pod' -delete
}