summaryrefslogtreecommitdiff
path: root/community/perl-digest-md5/PKGBUILD
blob: 53b147ef95882954e5ca62179edf410c9b218c7a (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
# $Id: PKGBUILD 35628 2010-12-21 23:03:54Z tdziedzic $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Ashok `ScriptDevil` Gautham  <ScriptDevil@gmail.com>

pkgname=perl-digest-md5
pkgver=2.40
pkgrel=2
pkgdesc="Digest::MD5::Perl - Perl implementation of Ron Rivests MD5 Algorithm"
arch=('i686' 'x86_64' 'mips64el')
url="http://search.cpan.org/dist/Digest-MD5"
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')

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/"

  # remove perllocal.pod and .packlist
  find "$pkgdir" -name perllocal.pod -delete
  find "$pkgdir" -name .packlist -delete
}