summaryrefslogtreecommitdiff
path: root/user/perl-params-validationcompiler/APKBUILD
blob: cb4c57f34c4c87b44b45e9edaece164d1cd2aac6 (plain) (blame)
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
29
30
31
32
33
34
35
36
# Contributor: A. Wilcox <awilfox@adelielinux.org>
# Maintainer: Adélie Perl Team <adelie-perl@lists.adelielinux.org>
pkgname=perl-params-validationcompiler
_pkgname=Params-ValidationCompiler
pkgver=0.30
pkgrel=0
pkgdesc="Perl subroutine parameter validator compiler"
url="https://metacpan.org/release/Params-ValidationCompiler"
arch="noarch"
options="!check"  # many, many, many unpackaged test deps
license="Artistic-2.0"
depends="perl-class-xsaccessor perl-eval-closure perl-exception-class"
checkdepends="perl-specio"
makedepends="perl-dev"
subpackages="$pkgname-doc"
source="https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/Params-ValidationCompiler-$pkgver.tar.gz"
builddir="$srcdir/Params-ValidationCompiler-$pkgver"

build() {
	cd "$builddir"
	PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
	make
}

check() {
	cd "$builddir"
	make test
}

package() {
	cd "$builddir"
	make DESTDIR="$pkgdir" install
	find "$pkgdir" \( -name perllocal.pod -o -name .packlist \) -delete
}

sha512sums="5911f9317f0b72e17c72435420a3b6b9f36780ab70715510c46e847970094e730169b9b3085f29cb23ee0aca2e78f7f9edd0d093859a1062869f35c90172bf05  Params-ValidationCompiler-0.30.tar.gz"