diff options
author | Timo Teräs <timo.teras@iki.fi> | 2017-07-06 11:37:17 +0300 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2017-07-11 14:31:24 +0300 |
commit | 14b652946dffcc42328616781a9c8c0d710fcfad (patch) | |
tree | d20127ff81d7ce921cec0ddc7c2b216a340ef23b /testing/perl-time-duration-parse/APKBUILD | |
parent | c76560164b1890c6179d195d78423dfcb782dded (diff) | |
download | aports-14b652946dffcc42328616781a9c8c0d710fcfad.tar.bz2 aports-14b652946dffcc42328616781a9c8c0d710fcfad.tar.xz |
testing/perl-time-duration-parse: new aport
http://search.cpan.org/dist/Time-Duration-Parse/
Diffstat (limited to 'testing/perl-time-duration-parse/APKBUILD')
-rw-r--r-- | testing/perl-time-duration-parse/APKBUILD | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/testing/perl-time-duration-parse/APKBUILD b/testing/perl-time-duration-parse/APKBUILD new file mode 100644 index 0000000000..1248e8e4c0 --- /dev/null +++ b/testing/perl-time-duration-parse/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-time-duration-parse +_pkgreal=Time-Duration-Parse +pkgver=0.13 +pkgrel=0 +pkgdesc="Parse string that represents time duration" +url="http://search.cpan.org/dist/Time-Duration-Parse/" +arch="noarch" +license="GPL PerlArtistic" +cpandepends="perl-exporter-lite" +cpanmakedepends="" +cpancheckdepends="perl-time-duration" +depends="$cpandepends" +makedepends="perl-dev $cpanmakedepends" +checkdepends="$cpancheckdepends" +subpackages="$pkgname-doc" +source="http://search.cpan.org/CPAN/authors/id/N/NE/NEILB/$_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="2732f6053dbc672d92a4efddab6e767f81bf1386f7b232fe1d1debe551d406b27c222c2173f9771f302bb928dac96edeb1ef3dfd0fe67d46315f671c7ad1a5b4 Time-Duration-Parse-0.13.tar.gz" |