diff options
Diffstat (limited to 'community/perl-digest-md5/PKGBUILD')
-rw-r--r-- | community/perl-digest-md5/PKGBUILD | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/community/perl-digest-md5/PKGBUILD b/community/perl-digest-md5/PKGBUILD index e813d9ea1..bb6d0bbd5 100644 --- a/community/perl-digest-md5/PKGBUILD +++ b/community/perl-digest-md5/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 35628 2010-12-21 23:03:54Z tdziedzic $ +# $Id: PKGBUILD 48551 2011-06-01 19:52:59Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Ashok `ScriptDevil` Gautham <ScriptDevil@gmail.com> pkgname=perl-digest-md5 -pkgver=2.40 -pkgrel=2 +pkgver=2.51 +pkgrel=1 pkgdesc="Digest::MD5::Perl - Perl implementation of Ron Rivests MD5 Algorithm" arch=('i686' 'x86_64') url="http://search.cpan.org/dist/Digest-MD5" @@ -12,16 +12,18 @@ license=('GPL' 'PerlArtistic') depends=('perl>=5.10.0') options=(!emptydirs) source=(http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/Digest-MD5-$pkgver.tar.gz) -md5sums=('97051183c4ff7012bdeaf55881164f4b') +md5sums=('73967d50b9d19990a1d609fe2b1e36c3') build() { cd "$srcdir/Digest-MD5-$pkgver" - # install module in vendor directories. PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor make - make install DESTDIR="$pkgdir/" +} +package() { + cd "$srcdir/Digest-MD5-$pkgver" + make install DESTDIR="$pkgdir/" # remove perllocal.pod and .packlist find "$pkgdir" -name perllocal.pod -delete find "$pkgdir" -name .packlist -delete |