diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2011-05-31 16:09:05 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2011-05-31 16:09:05 +0000 |
commit | 661fcc737ea1b5db21dd08b89c711c2f5465af82 (patch) | |
tree | 814c484a5bb6d5ef61f7b5e5a2a68b53420bb6c3 /testing/perl-math-round/APKBUILD | |
parent | 2505d245e04726aeae84ed097598d7fd4e3f9d61 (diff) | |
download | aports-661fcc737ea1b5db21dd08b89c711c2f5465af82.tar.bz2 aports-661fcc737ea1b5db21dd08b89c711c2f5465af82.tar.xz |
testing/perl-math-round: new aport
Math::Round perl module
http://search.cpan.org/dist/Math-Round/
Diffstat (limited to 'testing/perl-math-round/APKBUILD')
-rw-r--r-- | testing/perl-math-round/APKBUILD | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/testing/perl-math-round/APKBUILD b/testing/perl-math-round/APKBUILD new file mode 100644 index 0000000000..e6532a17e7 --- /dev/null +++ b/testing/perl-math-round/APKBUILD @@ -0,0 +1,39 @@ +# Contributor: Natanael Copa <ncopa@alpinelinux.org> +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +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" |