updated on Tue Jan 17 12:00:36 UTC 2012
[aur-mirror.git] / perl-math-random / PKGBUILD
blobd62618231d1f954828caf8150fc666040fec9594
1 # Contributor: Andreas B. Wagner <AndreasBWagner@pointfree.net>
2 pkgname=perl-math-random
3 pkgver=0.71
4 pkgrel=1
5 pkgdesc='Some basic numeric stats on vectors'
6 arch=('any')
7 url='http://search.cpan.org/dist/Math-Random/'
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/G/GR/GROMMEL/Math-Random-$pkgver.tar.gz")
19 build() {
20   cd "$srcdir/Math-Random-$pkgver"
21   
22   # Setting these env variables overwrites any command-line-options we don't want...
23   export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps \
24     PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='$pkgdir'" \
25     PERL_MB_OPT="--installdirs vendor --destdir '$pkgdir'" \
26     MODULEBUILDRC=/dev/null
28   # If using Makefile.PL
29   { /usr/bin/perl Makefile.PL &&
30     make &&
31     make test &&
32     make install; } || return 1
34   # remove perllocal.pod and .packlist
35   find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
37 # vim:set ts=2 sw=2 et:
38 md5sums=('55d7579c670ecd180f71fd157a2d2070')