From 661fcc737ea1b5db21dd08b89c711c2f5465af82 Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Tue, 31 May 2011 16:09:05 +0000 Subject: testing/perl-math-round: new aport Math::Round perl module http://search.cpan.org/dist/Math-Round/ --- testing/perl-math-round/APKBUILD | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 testing/perl-math-round/APKBUILD diff --git a/testing/perl-math-round/APKBUILD b/testing/perl-math-round/APKBUILD new file mode 100644 index 000000000..e6532a17e --- /dev/null +++ b/testing/perl-math-round/APKBUILD @@ -0,0 +1,39 @@ +# Contributor: Natanael Copa +# Maintainer: Natanael Copa +pkgname=perl-math-round +pkgver=0.06 +pkgrel=0 +pkgdesc="Math::Round perl module" +url="http://search.cpan.org/dist/Math-Round/" +arch="noarch" +license="GPLv2 or Artistic" +depends="perl" +makedepends="perl-dev" +install="" +subpackages="$pkgname-doc" +source="http://search.cpan.org/CPAN/authors/id/G/GR/GROMMEL/Math-Round-$pkgver.tar.gz" + +_builddir="$srcdir"/Math-Round-$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="552cef2753b246f97a6e20d8dee66e7c Math-Round-0.06.tar.gz" -- cgit v1.2.3