blob: 0e9a08d5644c524ed64eb0b28746965f1b4baec1 (
plain)
1 # Description: Open an HTML file with automatic charset detection
2 # URL: https://metacpan.org/pod/IO::HTML
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on:
5
6 name=p5-io-html
7 version=1.004
8 release=1
9 source=(https://cpan.metacpan.org/authors/id/C/CJ/CJM/IO-HTML-$version.tar.gz)
10
11 build() {
12 cd IO-HTML-$version
13 export PERL_MM_USE_DEFAULT=1 PERL_MM_OPT="INSTALLDIRS=vendor" \
14 PERL_MB_OPT="--installdirs vendor"
15 perl Makefile.PL
16 make
17 make DESTDIR=$PKG install
18 find $PKG \( -name '.packlist' -o -name '*.pod' \) -delete
19 }
|