contrib/p5-extutils-depends/Pkgfile

25 lines
601 B
Plaintext
Raw Normal View History

2007-12-27 12:17:54 +01:00
# Description: Perl bindings for depends
2018-02-18 12:07:21 +01:00
# URL: https://www.cpan.org/
# Maintainer: John Vogel, jvogel4 at stny dot rr dot com
# Depends on: p5-xml-parser
2007-12-27 12:17:54 +01:00
name=p5-extutils-depends
2016-10-05 15:27:40 +02:00
version=0.405
2018-02-18 12:28:54 +01:00
release=2
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() {
2018-02-18 12:07:21 +01:00
cd ExtUtils-Depends-$version
perl Makefile.PL
2011-05-04 11:47:45 +02:00
2018-02-18 12:07:21 +01:00
make OPTIMIZE="$CFLAGS"
make install DESTDIR=$PKG
2011-05-04 11:47:45 +02:00
2018-02-18 12:28:54 +01:00
find $PKG -type f -a ! -perm -u+w | xargs chmod u+w
2018-02-18 12:07:21 +01:00
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
}