Date: Tuesday, April 9, 2019 @ 19:52:05 Author: felixonmars Revision: 350488
archrelease: copy trunk to testing-any Added: perl-extutils-depends/repos/testing-any/ perl-extutils-depends/repos/testing-any/PKGBUILD (from rev 350487, perl-extutils-depends/trunk/PKGBUILD) ----------+ PKGBUILD | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) Copied: perl-extutils-depends/repos/testing-any/PKGBUILD (from rev 350487, perl-extutils-depends/trunk/PKGBUILD) =================================================================== --- testing-any/PKGBUILD (rev 0) +++ testing-any/PKGBUILD 2019-04-09 19:52:05 UTC (rev 350488) @@ -0,0 +1,32 @@ +# Maintainer: Felix Yan <felixonm...@archlinux.org> +# Contributor: Jan de Groot <j...@archlinux.org> +# Contributor: Sarah Hay <sa...@archlinux.org> +# Contributor: Arjan Timmerman <ar...@soulfly.nl> + +pkgname=perl-extutils-depends +pkgver=0.8000 +pkgrel=1 +pkgdesc="The Perl depends module" +arch=('any') +url="http://search.cpan.org/dist/ExtUtils-Depends/" +license=('PerlArtistic') +depends=('perl') +options=('!emptydirs') +source=("https://www.cpan.org/authors/id/X/XA/XAOC/ExtUtils-Depends-$pkgver.tar.gz") +md5sums=('ac2d17114f1b50624a8f37381c90485e') + +build() { + cd ExtUtils-Depends-$pkgver + perl Makefile.PL INSTALLDIRS=vendor + make +} + +check() { + cd ExtUtils-Depends-$pkgver + make test +} + +package() { + cd ExtUtils-Depends-$pkgver + make DESTDIR="$pkgdir" install +}