blob: 35d57e05405b64d96736621e9bcdf24c839d5c71 (
plain)
1 # Description: File::ShareDir::Install - Install read-only data files from a distribution
2 # URL: https://metacpan.org/pod/File::ShareDir::Install
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on:
5
6 name=p5-file-sharedir-install
7 version=0.13
8 release=1
9 source=(https://www.cpan.org/modules/by-module/File/File-ShareDir-Install-$version.tar.gz)
10
11 build() {
12 cd File-ShareDir-Install-$version
13 PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
14 make install DESTDIR=$PKG
15 find $PKG -name .packlist -o \
16 -name perllocal.pod -o \
17 -name README -o \
18 -name '*.bs' | xargs rm
19 }
|