Date: Saturday, April 20, 2019 @ 13:32:00 Author: bluewind Revision: 350928
Add dependency of perl-mail-dkim Added: perl-mail-authenticationresults/ perl-mail-authenticationresults/repos/ perl-mail-authenticationresults/trunk/ perl-mail-authenticationresults/trunk/PKGBUILD ----------+ PKGBUILD | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) Added: perl-mail-authenticationresults/trunk/PKGBUILD =================================================================== --- perl-mail-authenticationresults/trunk/PKGBUILD (rev 0) +++ perl-mail-authenticationresults/trunk/PKGBUILD 2019-04-20 13:32:00 UTC (rev 350928) @@ -0,0 +1,45 @@ +# Maintainer: Florian Pritz <bluew...@xinu.at> + +pkgname=perl-mail-authenticationresults +pkgver=1.20180923 +pkgrel=1 +pkgdesc='Object Oriented Authentication-Results Headers' +arch=(any) +license=(PerlArtistic GPL) +options=(!emptydirs) +depends=('perl>=5.8') +checkdepends=(perl-test-exception) +url=https://metacpan.org/release/Mail-AuthenticationResults +source=("http://search.cpan.org/CPAN/authors/id/M/MB/MBRADSHAW/Mail-AuthenticationResults-$pkgver.tar.gz") +md5sums=(d4ca126d3af0d1b664249f93bdd021f0) +sha512sums=(e8a33593261c59b8c1c91d6e655f8a3f6112974169dde9689788a7e0e83a0e66e6a5872ac56d7882e324c914bbb869b3f8c7b330ccf42765633fd475ef68f3be) +_ddir="Mail-AuthenticationResults-$pkgver" + +build() +( + cd "$srcdir/$_ddir" + export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps + unset PERL5LIB PERL_MM_OPT + /usr/bin/perl Makefile.PL + make +) + +check() +( + cd "$srcdir/$_ddir" + export PERL_MM_USE_DEFAULT=1 + unset PERL5LIB + make test +) + +package() +( + cd "$srcdir/$_ddir" + make install INSTALLDIRS=vendor DESTDIR="$pkgdir" +) + +# Local Variables: +# mode: shell-script +# sh-basic-offset: 2 +# End: +# vim:set ts=2 sw=2 et: