blob: 0e4440813c40dd8f95e4516e591736dc1c76d3af (
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.102
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 }
|