blob: 544f4d507f4a382f54d3643dfc4b4ecbdda0f960 (
plain)
1 # Description: Validate sub params against a spec
2 # URL: https://metacpan.org/pod/Params::Validate
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: p5-module-implementation p5-module-build
5
6 name=p5-params-validate
7 version=1.31
8 release=1
9 source=(https://www.cpan.org/authors/id/D/DR/DROLSKY/Params-Validate-$version.tar.gz)
10
11 build() {
12 cd Params-Validate-$version
13 perl ./Build.PL --installdirs=vendor
14 ./Build
15 ./Build install --destdir=$PKG
16 find $PKG -name .packlist -o \
17 -name perllocal.pod -o \
18 -name README -o \
19 -name '*.bs' | xargs rm
20 }
|