mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-04 12:01:41 +02:00
testing/perl-class-load: new aport
Class::Load perl module http://search.cpan.org/dist/Class-Load/
This commit is contained in:
parent
548e198e5b
commit
e8fca5f22e
39
testing/perl-class-load/APKBUILD
Normal file
39
testing/perl-class-load/APKBUILD
Normal file
@ -0,0 +1,39 @@
|
||||
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
|
||||
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
||||
pkgname=perl-class-load
|
||||
pkgver=0.06
|
||||
pkgrel=0
|
||||
pkgdesc="Class::Load perl module"
|
||||
url="http://search.cpan.org/dist/Class-Load/"
|
||||
arch="noarch"
|
||||
license="GPLv2 or Artistic"
|
||||
depends="perl perl-test-fatal"
|
||||
makedepends="perl-dev"
|
||||
install=""
|
||||
subpackages="$pkgname-doc"
|
||||
source="http://search.cpan.org/CPAN/authors/id/S/SA/SARTAK/Class-Load-$pkgver.tar.gz"
|
||||
|
||||
_builddir="$srcdir"/Class-Load-$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="5aea2e7c66e69dafdbfedc00e93f9f46 Class-Load-0.06.tar.gz"
|
||||
Loading…
x
Reference in New Issue
Block a user