mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-04 12:01:41 +02:00
testing/perl-test-fatal: new aport
Test::Fatal perl module http://search.cpan.org/dist/Test-Fatal/
This commit is contained in:
parent
24f689fe7f
commit
548e198e5b
39
testing/perl-test-fatal/APKBUILD
Normal file
39
testing/perl-test-fatal/APKBUILD
Normal file
@ -0,0 +1,39 @@
|
||||
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
|
||||
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
||||
pkgname=perl-test-fatal
|
||||
pkgver=0.005
|
||||
pkgrel=0
|
||||
pkgdesc="Test::Fatal perl module"
|
||||
url="http://search.cpan.org/dist/Test-Fatal/"
|
||||
arch="noarch"
|
||||
license="GPLv2 or Artistic"
|
||||
depends="perl perl-try-tiny"
|
||||
makedepends="perl-dev"
|
||||
install=""
|
||||
subpackages="$pkgname-doc"
|
||||
source="http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/Test-Fatal-$pkgver.tar.gz"
|
||||
|
||||
_builddir="$srcdir"/Test-Fatal-$pkgver
|
||||
prepare() {
|
||||
local i
|
||||
cd "$_builddir"
|
||||
for i in $source; do
|
||||
case $i in
|
||||
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
||||
esac
|
||||
done
|
||||
}
|
||||
|
||||
build() {
|
||||
cd "$_builddir"
|
||||
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor || return 1
|
||||
make && make test || return 1
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$_builddir"
|
||||
make DESTDIR="$pkgdir" install || return 1
|
||||
find "$pkgdir" \( -name perllocal.pod -o -name .packlist \) -delete
|
||||
}
|
||||
|
||||
md5sums="8fd91391e82ea4290eb0cf8409393485 Test-Fatal-0.005.tar.gz"
|
||||
Loading…
x
Reference in New Issue
Block a user