Add 'perl-tie-hash-sorted/' from commit 'b98d1fcbb4dcac9c3a2b56f81c82af0032a302b5'
git-subtree-dir: perl-tie-hash-sorted git-subtree-mainline:cdc516f0c2
git-subtree-split:b98d1fcbb4
This commit is contained in:
commit
ec61a5b357
2 changed files with 46 additions and 0 deletions
15
perl-tie-hash-sorted/.SRCINFO
Normal file
15
perl-tie-hash-sorted/.SRCINFO
Normal file
|
@ -0,0 +1,15 @@
|
|||
pkgbase = perl-tie-hash-sorted
|
||||
pkgdesc = Presents hashes in sorted order
|
||||
pkgver = 0.10
|
||||
pkgrel = 1
|
||||
url = http://search.cpan.org/~JGATCOMB/Tie-Hash-Sorted-0.10/
|
||||
arch = any
|
||||
license = GPL
|
||||
license = PerlArtistic
|
||||
depends = perl>=5.10.0
|
||||
options = !emptydirs
|
||||
source = http://cpan.perl.org/modules/by-authors/id/J/JG/JGATCOMB/Tie-Hash-Sorted-0.10.tar.gz
|
||||
md5sums = 56dbe4aebd74937096acc963ef5c3872
|
||||
|
||||
pkgname = perl-tie-hash-sorted
|
||||
|
31
perl-tie-hash-sorted/PKGBUILD
Normal file
31
perl-tie-hash-sorted/PKGBUILD
Normal file
|
@ -0,0 +1,31 @@
|
|||
# Maintainer: Cedric Girard <girard.cedric@gmail.com>
|
||||
_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:
|
Loading…
Reference in a new issue