diff options
Diffstat (limited to 'extra/p5-xml-parser/Pkgfile')
-rwxr-xr-x | extra/p5-xml-parser/Pkgfile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/extra/p5-xml-parser/Pkgfile b/extra/p5-xml-parser/Pkgfile new file mode 100755 index 000000000..d658303f6 --- /dev/null +++ b/extra/p5-xml-parser/Pkgfile @@ -0,0 +1,19 @@ +# Description: Module perl pour le traitement des documents xml +# URL: http://search.cpan.org/dist/XML-Parser/ +# Maintainer: NuTyX core team +# Packager: thierryn1 at hispeed dot ch + +name=p5-xml-parser +version=2.41 +release=2 +source=(http://search.cpan.org/CPAN/authors/id/T/TO/TODDR/XML-Parser-$version.tar.gz) + + +build() { + cd XML-Parser-$version + perl Makefile.PL + make OPTIMIZE="$CFLAGS" + make DESTDIR=$PKG install + find $PKG -name .packlist -o -name perllocal.pod -exec rm '{}' \; +} + |