blob: 980ac4e385bccfaf31bc9328ab237ce1b5d8cfd1 (
plain)
1 # Description: Install the C libxml2 library on your system
2 # URL: https://metacpan.org/release/Alien-Libxml2
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: libxml2 p5-alien-build p5-html-parser p5-sort-versions p5-uri
5
6 name=p5-alien-libxml2
7 version=0.17
8 release=1
9 source=(https://cpan.metacpan.org/authors/id/P/PL/PLICEASE/Alien-Libxml2-$version.tar.gz)
10
11 build() {
12 cd Alien-Libxml2-$version
13 perl Makefile.PL INSTALLDIRS=vendor
14 make
15 make DESTDIR=$PKG install
16 find $PKG \( -name '.packlist' -o -name '*.pod' \) -delete
17 }
|