blob: 0b29958172647746779b603417a3e0b4c7d75e0f (
plain)
1 # Description: Type constraints and coercions for Perl
2 # URL: https://metacpan.org/pod/Specio
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: p5-devel-stacktrace p5-mro-compat p5-role-tiny
5
6 name=p5-specio
7 version=0.47
8 release=1
9 source=(https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/Specio-$version.tar.gz)
10
11 build() {
12 cd Specio-$version
13 PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
14 make
15 make install DESTDIR=$PKG
16 find $PKG \( -name '.packlist' -o -name '*.pod' \) -delete
17 }
|