blob: 79d86dea286abe091ef28405d74e84e302799cd9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Description: Easy API to maintain XML
# URL: http://search.cpan.org/~grantm/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: perl
name=p5-xml-simple
version=2.18
release=1
source=(http://search.cpan.org/CPAN/authors/id/G/GR/GRANTM/XML-Simple-$version.tar.gz)
build() {
cd XML-Simple-$version
perl Makefile.PL
make
make DESTDIR=$PKG install
find $PKG -name perllocal.pod | xargs rm
}
|