blob: fd5422bb3ebae293442f37c4409ffff12dabf5b3 (
plain)
1 # Description: Open an HTML file with automatic charset detection
2 # URL: https://cpan.metacpan.org/dist/IO-HTML
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on:
5
6 name=p5-io-html
7 version=1.001
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 }
|