summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/perl_modules/perl-mime-parser/PKGBUILD
blob: c8adc5de079a2313ed811aab8acb36e52212ff63 (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
pkgname=perl-mime-parser
pkgver=5.420
pkgrel=2
pkgdesc="Perl/CPAN Module MIME::Parser : Parses streams to create MIME entities"
arch=("i686" "x86_64")
url="http://search.cpan.org/DSKOLL/MIME-tools"
license=("GPL" "Artistic")
source=("http://www.cpan.org/authors/id/D/DS/DSKOLL/MIME-tools-5.420.tar.gz")
md5sums=("4db6505cc0132c80c5a9cc54f443a21a")
makedepends=("perl-io-stringy" "perl-mailtools" )
#depends=("perl-io-stringy" "perl-mail-field" "perl-mail-header" "perl-mail-internet")
depends=("perl-io-stringy" "perl-mailtools" )
build() {
  cd $startdir/src/MIME-tools-5.420
  eval `perl -V:archname`
  /usr/bin/perl Makefile.PL \
  INSTALLARCHLIB=/usr/lib/perl5/current/${archname} \
  INSTALLSITELIB=/usr/lib/perl5/site_perl/current \
  INSTALLSITEARCH=/usr/lib/perl5/site_perl/current/${archname} || return 1
  make || return 1
  make DESTDIR=$startdir/pkg install || return 1
  /usr/bin/find $startdir/pkg -name '.packlist' -exec rm  '{}' \; && \
  /usr/bin/find $startdir/pkg -name 'perllocal.pod' -exec rm  '{}' \; && \
  /usr/bin/find $startdir/pkg -depth -type d -empty -exec rmdir '{}' \;
}