updated on Wed Jan 25 16:08:47 UTC 2012
[aur-mirror.git] / perl-string-tokenizer / PKGBUILD
blob2db12cd525bdf5841428f6cfae5ed3a5b1caecd0
1 # Contributor: Ben Webb <bjwebb67 at googlemail dot com>
2 pkgname=perl-string-tokenizer
3 pkgver=0.05
4 pkgrel=1
5 pkgdesc="Pure Perl UUID Support With Functional Interface"
6 arch=(any)
7 url="http://search.cpan.org/~stevan/String-Tokenizer-$pkgver/lib/String/Tokenizer.pm"
8 license=('GPL' 'PerlArtistic')
9 depends=('perl>=5.10.0')
10 options=(!emptydirs)
11 source=(http://search.cpan.org/CPAN/authors/id/S/ST/STEVAN/String-Tokenizer-$pkgver.tar.gz)
12 md5sums=('650bfc09bc0c7b671a67329b2bb901f8')
14 build() {
15   cd "$srcdir/String-Tokenizer-$pkgver"
17   # install module in vendor directories.
18   perl Makefile.PL INSTALLDIRS=vendor || return 1
19   make || return 1
20   make install DESTDIR=${pkgdir} || return 1
22   # remove perllocal.pod and .packlist
23   find "$pkgdir" -name perllocal.pod -delete
24   find "$pkgdir" -name .packlist -delete