Date: Thursday, June 1, 2017 @ 09:11:22 Author: bluewind Revision: 231994
archrelease: copy trunk to community-staging-any Added: perl-html-element-extended/repos/community-staging-any/ perl-html-element-extended/repos/community-staging-any/PKGBUILD (from rev 231993, perl-html-element-extended/trunk/PKGBUILD) ----------+ PKGBUILD | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) Copied: perl-html-element-extended/repos/community-staging-any/PKGBUILD (from rev 231993, perl-html-element-extended/trunk/PKGBUILD) =================================================================== --- community-staging-any/PKGBUILD (rev 0) +++ community-staging-any/PKGBUILD 2017-06-01 09:11:22 UTC (rev 231994) @@ -0,0 +1,28 @@ +# $Id$ +# Maintainer: Sergej Pupykin <pupykin.s+a...@gmail.com> +# Contributor: Andrew Simmons <andrew.simm...@gmail.com> + +pkgname=perl-html-element-extended +pkgver=1.18 +pkgrel=4 +pkgdesc="Perl extension for HTML::Element" +arch=('any') +url="http://search.cpan.org/dist/HTML-Element-Extended/" +license=('GPL') +depends=('perl') +conflicts=('perl-html-elementtable') +source=("http://search.cpan.org/CPAN/authors/id/M/MS/MSISK/HTML-Element-Extended-$pkgver.tar.gz") +md5sums=('41ec9dcc7cefa03b204d0e8ca8e1c112') + +build() { + cd "$srcdir"/HTML-Element-Extended-$pkgver + PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor + make +} + +package() { + cd "$srcdir"/HTML-Element-Extended-$pkgver + make install DESTDIR="$pkgdir" + find "$pkgdir" -name '.packlist' -delete + find "$pkgdir" -name '*.pod' -delete +}