blob: 4251aff1221cad9596e302190e3dd9ee3c2b6745 (
plain)
1 # Description: Interface to the gnome libxslt library
2 # URL: https://cpan.metacpan.org/dist/XML-LibXSLT
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: libxslt p5-xml-libxml
5
6 name=p5-xml-libxslt
7 version=1.96
8 release=1
9 source=(https://www.cpan.org/authors/id/S/SH/SHLOMIF/XML-LibXSLT-$version.tar.gz)
10
11 build() {
12 cd XML-LibXSLT-$version
13 perl Makefile.PL INSTALLDIRS=vendor
14 make
15 make DESTDIR=$PKG install
16 find $PKG \( -name '.packlist' -o -name '*.pod' \) -delete
17 }
|