blob: bdb11010f09f76384e55fe605ae5918f26c4d1b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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=1
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 '{}' \;
}
|