Date: Wednesday, August 1, 2018 @ 11:18:12 Author: foutrelis Revision: 366509
archrelease: copy trunk to community-staging-any Added: perl-package-stash/repos/community-staging-any/ perl-package-stash/repos/community-staging-any/PKGBUILD (from rev 366508, perl-package-stash/trunk/PKGBUILD) ----------+ PKGBUILD | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) Copied: perl-package-stash/repos/community-staging-any/PKGBUILD (from rev 366508, perl-package-stash/trunk/PKGBUILD) =================================================================== --- community-staging-any/PKGBUILD (rev 0) +++ community-staging-any/PKGBUILD 2018-08-01 11:18:12 UTC (rev 366509) @@ -0,0 +1,33 @@ +# $Id$ +# Maintainer: Felix Yan <felixonm...@archlinux.org> +# Contributor: Jonathan Steel <jst...@aur.archlinux.org> +# Contributor: Justin Davis <jrc...@gmail.com> + +pkgname=perl-package-stash +pkgver=0.37 +pkgrel=5 +pkgdesc="Routines for manipulating stashes" +arch=('any') +url="http://search.cpan.org/dist/Package-Stash" +license=('PerlArtistic' 'GPL') +depends=('perl-dist-checkconflicts' 'perl-package-stash-xs' 'perl-module-implementation') +checkdepends=('perl-test-fatal' 'perl-test-requires') +options=('!emptydirs') +source=(http://search.cpan.org/CPAN/authors/id/D/DO/DOY/Package-Stash-$pkgver.tar.gz) +sha1sums=('43fc4e362ac1a45eb27fe779806cbd96c891e2dc') + +build() { + cd Package-Stash-$pkgver + perl Makefile.PL INSTALLDIRS=vendor + make +} + +check() { + cd Package-Stash-$pkgver + make test +} + +package() { + cd Package-Stash-$pkgver + make DESTDIR="$pkgdir" install +}