diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2011-05-31 13:52:33 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2011-05-31 13:52:33 +0000 |
commit | 81a3897a6fdb8d45e4cef10cdf1ac619c95f3cba (patch) | |
tree | 4c3b80a45f400f30ce76a84e8af2d6765eb4dae9 | |
parent | 984e8a9d1e20c3f1a694ae7b5700113bebb7ff22 (diff) | |
download | aports-81a3897a6fdb8d45e4cef10cdf1ac619c95f3cba.tar.bz2 aports-81a3897a6fdb8d45e4cef10cdf1ac619c95f3cba.tar.xz |
testing/perl-regexp-common: new aport
Regexp::Common perl module
http://search.cpan.org/dist/Regexp-Common/
-rw-r--r-- | testing/perl-regexp-common/APKBUILD | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/testing/perl-regexp-common/APKBUILD b/testing/perl-regexp-common/APKBUILD new file mode 100644 index 0000000000..29055d826c --- /dev/null +++ b/testing/perl-regexp-common/APKBUILD @@ -0,0 +1,39 @@ +# Contributor: Natanael Copa <ncopa@alpinelinux.org> +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=perl-regexp-common +pkgver=2011041701 +pkgrel=0 +pkgdesc="Regexp::Common perl module" +url="http://search.cpan.org/dist/Regexp-Common/" +arch="noarch" +license="GPLv2 or Artistic" +depends="perl" +makedepends="perl-dev" +install="" +subpackages="$pkgname-doc" +source="http://search.cpan.org/CPAN/authors/id/A/AB/ABIGAIL/Regexp-Common-$pkgver.tar.gz" + +_builddir="$srcdir"/Regexp-Common-$pkgver +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor || return 1 + make && make test || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 + find "$pkgdir" \( -name perllocal.pod -o -name .packlist \) -delete +} + +md5sums="7e6bef3eefff91ecb2f07b1e81217650 Regexp-Common-2011041701.tar.gz" |