diff options
author | Timo Teräs <timo.teras@iki.fi> | 2017-07-06 11:32:03 +0300 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2017-07-11 14:31:24 +0300 |
commit | 895a204f5d1b4dcb1ef9fb83e0155165f13577ba (patch) | |
tree | 31189440916c2d184e66976392db5214b7846dd9 /testing/perl-template-plugin-csv | |
parent | bcd072c78175f9c5296abbcbd95315983846a98d (diff) | |
download | aports-895a204f5d1b4dcb1ef9fb83e0155165f13577ba.tar.bz2 aports-895a204f5d1b4dcb1ef9fb83e0155165f13577ba.tar.xz |
testing/perl-template-plugin-csv: new aport
http://search.cpan.org/dist/Template-Plugin-CSV/
Diffstat (limited to 'testing/perl-template-plugin-csv')
-rw-r--r-- | testing/perl-template-plugin-csv/APKBUILD | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/testing/perl-template-plugin-csv/APKBUILD b/testing/perl-template-plugin-csv/APKBUILD new file mode 100644 index 0000000000..7133be0b58 --- /dev/null +++ b/testing/perl-template-plugin-csv/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-template-plugin-csv +_pkgreal=Template-Plugin-CSV +pkgver=0.04 +pkgrel=0 +pkgdesc="Template plugin to generate CSV" +url="http://search.cpan.org/dist/Template-Plugin-CSV/" +arch="noarch" +license="GPL PerlArtistic" +cpandepends="perl-template-toolkit perl-text-csv" +cpanmakedepends="" +cpancheckdepends="" +depends="$cpandepends" +makedepends="perl-dev $cpanmakedepends" +checkdepends="$cpancheckdepends" +subpackages="$pkgname-doc" +source="http://search.cpan.org/CPAN/authors/id/G/GU/GUGOD/$_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="41d36e1208f3e4be35383377c89bba4b56589b7892146e208bfea82fadee1c48e29963969feed7848be4d7900f6bffcc4f87071922d1771832cebfbf52b7cccd Template-Plugin-CSV-0.04.tar.gz" |