blob: 08034add9899a88107c0f4f9a53f66d38fe55cf5 (
plain)
1 # Description: Perl package to work with International Standard Serial Numbers
2 # URL: https://cpan.metacpan.org/dist/Business-ISSN
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on:
5
6 name=p5-business-issn
7 version=1.003
8 release=1
9 source=(https://cpan.metacpan.org/authors/id/B/BD/BDFOY/Business-ISSN-$version.tar.gz)
10
11 build() {
12 cd Business-ISSN-$version
13 unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
14 export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
15 perl Makefile.PL
16 make
17 make install INSTALLDIRS=vendor DESTDIR=$PKG
18 find $PKG -name .packlist -o \
19 -name perllocal.pod -o \
20 -name README -o \
21 -name '*.bs' | xargs rm
22 }
|