From 81dc59450e04a60d3c869e7b4c9073e1f249770c Mon Sep 17 00:00:00 2001 From: Cedric Girard Date: Thu, 8 Dec 2011 11:49:03 +0100 Subject: [PATCH] Packaging of Tie::Hash::Sorted --- pkgbuild/perl-tie-hash-sorted/PKGBUILD | 31 ++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 pkgbuild/perl-tie-hash-sorted/PKGBUILD diff --git a/pkgbuild/perl-tie-hash-sorted/PKGBUILD b/pkgbuild/perl-tie-hash-sorted/PKGBUILD new file mode 100644 index 0000000..dfc5713 --- /dev/null +++ b/pkgbuild/perl-tie-hash-sorted/PKGBUILD @@ -0,0 +1,31 @@ +# Maintainer: Cedric Girard +_author=JGATCOMB +_perlmod=Tie-Hash-Sorted +pkgname=perl-tie-hash-sorted +pkgver=0.10 +pkgrel=1 +pkgdesc="Presents hashes in sorted order" +arch=('any') +url="http://search.cpan.org/~$_author/$_perlmod-$pkgver/" +license=('GPL' 'PerlArtistic') +depends=('perl>=5.10.0') +options=(!emptydirs) +source=(http://cpan.perl.org/modules/by-authors/id/J/JG/$_author/$_perlmod-$pkgver.tar.gz) +md5sums=('56dbe4aebd74937096acc963ef5c3872') + +build() { + cd "$srcdir/$_perlmod-$pkgver" + + # Install module in vendor directories. + PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor + make + +} + +package() { + cd "$srcdir/$_perlmod-$pkgver" + make install DESTDIR="$pkgdir/" + +} + +# vim:set ts=2 sw=2 et: