diff options
author | Timo Teräs <timo.teras@iki.fi> | 2017-07-06 11:17:10 +0300 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2017-07-11 14:31:23 +0300 |
commit | 91bd597253b69bb8d355b51ee6c1e8a329eeb689 (patch) | |
tree | f5c45c4d206f33efcd255302c373b3cfafc6c781 /testing/perl-sort-naturally | |
parent | ac648a02fb66757240146b76269467edb1caad73 (diff) | |
download | aports-91bd597253b69bb8d355b51ee6c1e8a329eeb689.tar.bz2 aports-91bd597253b69bb8d355b51ee6c1e8a329eeb689.tar.xz |
testing/perl-sort-naturally: new aport
http://search.cpan.org/dist/Sort-Naturally/
Diffstat (limited to 'testing/perl-sort-naturally')
-rw-r--r-- | testing/perl-sort-naturally/APKBUILD | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/testing/perl-sort-naturally/APKBUILD b/testing/perl-sort-naturally/APKBUILD new file mode 100644 index 0000000000..f8834f5237 --- /dev/null +++ b/testing/perl-sort-naturally/APKBUILD @@ -0,0 +1,48 @@ +# Automatically generated by apkbuild-cpan, template 2 +# Contributor: Timo Teräs <timo.teras@iki.fi> +# Maintainer: Timo Teräs <timo.teras@iki.fi> +pkgname=perl-sort-naturally +_pkgreal=Sort-Naturally +pkgver=1.03 +pkgrel=0 +pkgdesc="sort lexically, but sort numeral parts numerically" +url="http://search.cpan.org/dist/Sort-Naturally/" +arch="noarch" +license="GPL PerlArtistic" +cpandepends="" +cpanmakedepends="" +cpancheckdepends="" +depends="$cpandepends" +makedepends="perl-dev $cpanmakedepends" +checkdepends="$cpancheckdepends" +subpackages="$pkgname-doc" +source="http://search.cpan.org/CPAN/authors/id/B/BI/BINGOS/$_pkgreal-$pkgver.tar.gz" +builddir="$srcdir/$_pkgreal-$pkgver" + +prepare() { + default_prepare || return 1 + + cd "$builddir" + export CFLAGS=$(perl -MConfig -E 'say $Config{ccflags}') + PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor +} + +build() { + cd "$builddir" + export CFLAGS=$(perl -MConfig -E 'say $Config{ccflags}') + make +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir" install || return 1 + find "$pkgdir" \( -name perllocal.pod -o -name .packlist \) -delete +} + +check() { + cd "$builddir" + export CFLAGS=$(perl -MConfig -E 'say $Config{ccflags}') + make test +} + +sha512sums="6d909026bf470f36a558dcb8bd809ca29db639dffd5a981c05dbf330b093e7f33cfed665510214bb58be4dfe9e2fe1d5f89142cdd770b3c59df267c6d664ba8b Sort-Naturally-1.03.tar.gz" |