blob: 2b11d742b76d0124d541b10ddf62ba9a986727af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Description: Module perl
# URL: http://www.gtkperl.org
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: p5-xml-parser p5-xml-writer
name=p5-extutils-depends
version=0.301
release=1
source=(http://www.cpan.org/modules/by-module/ExtUtils/ExtUtils-Depends-$version.tar.gz)
build() {
cd ExtUtils-Depends-$version
perl Makefile.PL
make
make DESTDIR=$PKG install
find $PKG \
-name perllocal.pod \
-o -name .packlist | xargs rm
find $PKG -empty | xargs rmdir -p ||:
}
|