23 lines
671 B
Plaintext
23 lines
671 B
Plaintext
# Description: Perl package to work with International Standard Serial Numbers
|
|
# URL: https://metacpan.org/pod/Business::ISSN
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on:
|
|
|
|
name=p5-business-issn
|
|
version=1.004
|
|
release=1
|
|
source=(https://cpan.metacpan.org/authors/id/B/BD/BDFOY/Business-ISSN-$version.tar.gz)
|
|
|
|
build() {
|
|
cd Business-ISSN-$version
|
|
unset PERL5LIB PERL_MM_OPT PERL_MB_OPT PERL_LOCAL_LIB_ROOT
|
|
export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
|
|
perl Makefile.PL
|
|
make
|
|
make install INSTALLDIRS=vendor DESTDIR=$PKG
|
|
find $PKG -name .packlist -o \
|
|
-name perllocal.pod -o \
|
|
-name README -o \
|
|
-name '*.bs' | xargs rm
|
|
}
|