# $Id: PKGBUILD 214224 2014-06-04 13:51:39Z bluewind $ # Maintainer: Felix Yan # Contributor: kevin # Contributor: Manolis Tzanidakis # Contributor: Firmicus pkgname=perl-html-parser pkgver=3.71 pkgrel=3 pkgdesc="Perl HTML parser class" arch=('i686' 'x86_64') license=('PerlArtistic') url="http://search.cpan.org/dist/HTML-Parser/" depends=('perl-html-tagset' 'perl') checkdepends=('perl-test-pod') options=('!emptydirs') source=(http://www.cpan.org/authors/id/G/GA/GAAS/HTML-Parser-${pkgver}.tar.gz) md5sums=('9128a45893097dfa3bf03301b19c5efe') build() { cd HTML-Parser-${pkgver} perl Makefile.PL INSTALLDIRS=vendor make } check() { cd HTML-Parser-${pkgver} make test } package() { cd HTML-Parser-${pkgver} make install DESTDIR="${pkgdir}" }