blob: ccf2bc6d1f46b9657a12f080a4dbd006e93ef910 (
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
|
# This PKGBUILD was autocreated. See http://xtermin.us/archperl/ for details
# Maintainer: Charles Mauch <cmauch@gmail.com>
pkgname=perl-test-exception
pkgver=0.31
pkgrel=1
pkgdesc="Perl/CPAN Module Test::Exception : Functions for testing exceptionbased code"
arch=("any")
url="http://search.cpan.org/~adie/"
license=("GPL" "Artistic")
makedepends=("perl-sub-uplevel")
depends=("perl-sub-uplevel")
source=("http://search.cpan.org/CPAN/authors/id/A/AD/ADIE/Test-Exception-$pkgver.tar.gz")
md5sums=('adb57ca7614d15e5b307bf5e024b35a8')
build() {
cd $srcdir/Test-Exception-$pkgver
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
make
}
package() {
cd $srcdir/Test-Exception-$pkgver
make install DESTDIR=$pkgdir
find $pkgdir -name '.packlist' -delete
find $pkgdir -name '*.pod' -delete
}
|