Date: Friday, July 25, 2014 @ 08:22:17 Author: fyan Revision: 116320 addpkg: perl-net-oauth 0.28-4
Added: perl-net-oauth/ perl-net-oauth/repos/ perl-net-oauth/trunk/ perl-net-oauth/trunk/PKGBUILD ----------+ PKGBUILD | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) Added: perl-net-oauth/trunk/PKGBUILD =================================================================== --- perl-net-oauth/trunk/PKGBUILD (rev 0) +++ perl-net-oauth/trunk/PKGBUILD 2014-07-25 06:22:17 UTC (rev 116320) @@ -0,0 +1,36 @@ +# $Id$ +# Maintainer: Felix Yan <felixonm...@gmail.com> +# CPAN Name : Net-OAuth +# Contributor: Anonymous +# Generator : CPANPLUS::Dist::Arch 1.28 + +pkgname=perl-net-oauth +pkgver=0.28 +pkgrel=4 +pkgdesc="An implementation of the OAuth protocol" +arch=('any') +license=('PerlArtistic' 'GPL') +options=('!emptydirs') +depends=('perl-class-accessor' 'perl-class-data-inheritable' 'perl-digest-hmac' 'perl-digest-sha1' 'perl-uri' 'perl-libwww' 'perl-file-slurp-tiny') +checkdepends=('perl-test-warn') +url='http://search.cpan.org/dist/Net-OAuth' +source=("http://search.cpan.org/CPAN/authors/id/K/KG/KGRENNAN/Net-OAuth-$pkgver.tar.gz") +sha512sums=('b38c3784221bdf56b5b55021cc7e74cf6c5ce47b6743b6fefae9e148ff61d3c1e068aa5829dfed13ffd070e1286ab0d743e2f7b7c900f5fd8cf78f788cff70c4') + +build() { + cd "$srcdir/Net-OAuth-$pkgver" + PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor + make +} + +check() { + cd "$srcdir/Net-OAuth-$pkgver" + PERL_MM_USE_DEFAULT=1 + make test +} + +package() { + cd "$srcdir/Net-OAuth-$pkgver" + make install DESTDIR="$pkgdir" + find "$pkgdir" -name '.packlist' -o -name '*.pod' -delete +}