updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / perl-math-vecstat / PKGBUILD
blob36e27b1b7ef4cd85d2db4a79e84c609b4d03f692
1 # Contributor: Andreas B. Wagner <AndreasBWagner@pointfree.net>
2 pkgname=perl-math-vecstat
3 pkgver=0.08
4 pkgrel=1
5 pkgdesc='Some basic numeric stats on vectors'
6 arch=('any')
7 url='http://search.cpan.org/dist/Math-VecStat/VecStat.pm'
8 license=('unknown')
9 depends=('perl>=5.10.0')
10 makedepends=()
11 provides=()
12 conflicts=()
13 replaces=()
14 backup=()
15 options=(!emptydirs)
16 install=
17 source=("http://search.cpan.org/CPAN/authors/id/A/AS/ASPINELLI/Math-VecStat-$pkgver.tar.gz")
18 md5sums=()
20 build() {
21   cd "$srcdir/Math-VecStat-$pkgver"
22   
23   # Setting these env variables overwrites any command-line-options we don't want...
24   export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps \
25     PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='$pkgdir'" \
26     PERL_MB_OPT="--installdirs vendor --destdir '$pkgdir'" \
27     MODULEBUILDRC=/dev/null
29   # If using Makefile.PL
30   { /usr/bin/perl Makefile.PL &&
31     make &&
32     make test &&
33     make install; } || return 1
35   # remove perllocal.pod and .packlist
36   find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
38 # vim:set ts=2 sw=2 et:
39 md5sums=('3df23fb451f73bb49fd4ea344ba94020')