blob: 31790d3162a0825386b0756b20bb663229a440f1 (
plain)
1 # Description: Perl module for Dates in the Julian calendar
2 # URL: https://metacpan.org/release/DateTime-Calendar-Julian
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on:
5
6 name=p5-datetime-calendar-julian
7 version=0.107
8 release=1
9 source=(https://cpan.metacpan.org/authors/id/W/WY/WYANT/DateTime-Calendar-Julian-$version.tar.gz)
10
11 build() {
12 cd DateTime-Calendar-Julian-$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 }
|