contrib/p5-extutils-depends/Pkgfile

25 lines
621 B
Plaintext
Raw Normal View History

2007-12-27 12:17:54 +01:00
# Description: Perl bindings for depends
2021-05-20 10:23:23 +02:00
# URL: https://metacpan.org/pod/ExtUtils::Depends
# Maintainer: Tim Biermann, tbier at posteo dot de
2018-02-18 12:07:21 +01:00
# Depends on: p5-xml-parser
2007-12-27 12:17:54 +01:00
name=p5-extutils-depends
2021-05-20 10:23:23 +02:00
version=0.8001
2019-06-04 13:05:06 +02:00
release=1
2018-02-18 12:07:21 +01:00
source=(https://www.cpan.org/modules/by-module/ExtUtils/ExtUtils-Depends-$version.tar.gz)
2007-12-27 12:17:54 +01:00
build() {
2021-05-20 10:23:23 +02:00
cd ExtUtils-Depends-$version
perl Makefile.PL
2011-05-04 11:47:45 +02:00
2021-05-20 10:23:23 +02:00
make OPTIMIZE="$CFLAGS"
make install DESTDIR=$PKG
2011-05-04 11:47:45 +02:00
2021-05-20 10:23:23 +02:00
find $PKG -type f -a ! -perm -u+w | xargs chmod u+w
find $PKG \
-name perllocal.pod \
-o -name "*.bs" \
-o -name .packlist | xargs rm
find $PKG -empty | xargs rmdir -p ||:
2007-12-27 12:17:54 +01:00
}