diff options
author | Danny Rawlins <monster.romster@gmail.com> | 2012-07-11 19:43:59 +1000 |
---|---|---|
committer | Danny Rawlins <monster.romster@gmail.com> | 2012-07-11 19:44:35 +1000 |
commit | e147458fc9e18897a6e464068dbd6c72a7889d25 (patch) | |
tree | 1d0bdc55b6b50f5b78732806a449d9119e35ae93 /p5-html-parser | |
parent | 6c5eac111aa63d857fd5b533a28f2d07c734a5ab (diff) | |
download | opt-e147458fc9e18897a6e464068dbd6c72a7889d25.tar.gz opt-e147458fc9e18897a6e464068dbd6c72a7889d25.tar.xz |
p5-html-parser: 3.68 -> 3.69
Diffstat (limited to 'p5-html-parser')
-rw-r--r-- | p5-html-parser/.footprint | 2 | ||||
-rw-r--r-- | p5-html-parser/.md5sum | 2 | ||||
-rw-r--r-- | p5-html-parser/Pkgfile | 21 |
3 files changed, 14 insertions, 11 deletions
diff --git a/p5-html-parser/.footprint b/p5-html-parser/.footprint index 2ab9acbc8..7fde96041 100644 --- a/p5-html-parser/.footprint +++ b/p5-html-parser/.footprint @@ -1,8 +1,6 @@ drwxr-xr-x root/root usr/ drwxr-xr-x root/root usr/lib/ drwxr-xr-x root/root usr/lib/perl5/ -drwxr-xr-x root/root usr/lib/perl5/5.12/ -drwxr-xr-x root/root usr/lib/perl5/5.12/linux-thread-multi/ drwxr-xr-x root/root usr/lib/perl5/site_perl/ drwxr-xr-x root/root usr/lib/perl5/site_perl/5.12/ drwxr-xr-x root/root usr/lib/perl5/site_perl/5.12/linux-thread-multi/ diff --git a/p5-html-parser/.md5sum b/p5-html-parser/.md5sum index ce396d6bf..35e39696b 100644 --- a/p5-html-parser/.md5sum +++ b/p5-html-parser/.md5sum @@ -1 +1 @@ -5550b2da7aa94341f1e8a17a4ac20c68 HTML-Parser-3.68.tar.gz +d22cc6468ce670a56034be907e4e7c54 HTML-Parser-3.69.tar.gz diff --git a/p5-html-parser/Pkgfile b/p5-html-parser/Pkgfile index 6bbd77f76..25991d86e 100644 --- a/p5-html-parser/Pkgfile +++ b/p5-html-parser/Pkgfile @@ -1,20 +1,25 @@ -# Description: HTML::Parser -# URL: http://search.cpan.org/~gaas/HTML-Parser-3.46/ -# Maintainer: Lucas Hazel, lucas at die dot net dot au +# Description: Perl HTML parser class. +# URL: http://search.cpan.org/dist/HTML-Parser +# Maintainer: Danny Rawlins, monster dot romster at gmail dot com # Packager: Matt Housh, jaeger at morpheus dot net # Depends on: p5-html-tagset name=p5-html-parser -version=3.68 +version=3.69 release=1 -source=(http://www.cpan.org/authors/id/G/GA/GAAS/HTML-Parser-$version.tar.gz) +source=(http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/HTML-Parser-3.69.tar.gz) build() { cd HTML-Parser-$version echo "no" | perl Makefile.PL make OPTIMIZE="$CFLAGS" make DESTDIR=$PKG install - find ${PKG} -name .packlist -o \ - -name perllocal.pod -o \ - -name '*.bs' | xargs rm + + find $PKG -type f \( \ + -name '.packlist' -or \ + -name '*.bs' -or \ + -name 'autosplit.ix' -or \ + -name 'perllocal.pod' \) -delete + + find $PKG -depth -empty -exec rm -r {} \; } |