diff options
author | Stuart Cardall <developer@it-offshore.co.uk> | 2015-12-12 12:25:21 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2015-12-14 13:47:13 +0000 |
commit | 952d6beab8a46699e22a6723f530d91ffee361ab (patch) | |
tree | 2e135cc777b4e6d776e62a20613a30c047355336 /testing/perl-io-tee | |
parent | 361940a31af730a7e38fac97ef2884473a422676 (diff) | |
download | aports-952d6beab8a46699e22a6723f530d91ffee361ab.tar.bz2 aports-952d6beab8a46699e22a6723f530d91ffee361ab.tar.xz |
testing/perl-io-tee: new aport
Diffstat (limited to 'testing/perl-io-tee')
-rw-r--r-- | testing/perl-io-tee/APKBUILD | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/testing/perl-io-tee/APKBUILD b/testing/perl-io-tee/APKBUILD new file mode 100644 index 0000000000..29198bab43 --- /dev/null +++ b/testing/perl-io-tee/APKBUILD @@ -0,0 +1,34 @@ +# Contributor: Stuart Cardall <developer@it-offshore.co.uk> +# Maintainer: Stuart Cardall <developer@it-offshore.co.uk> +pkgname=perl-io-tee +pkgver=0.64 +_realname=IO-Tee-$pkgver +pkgrel=0 +pkgdesc="Multiplex output to multiple output handles" +url="http://search.cpan.org/dist/IO-Tee/" +arch="noarch" +license="GPL PerlArtistic" +cpandepends="" +cpanmakedepends="" +depends="$cpandepends" +makedepends="perl-dev $cpanmakedepends" +subpackages="$pkgname-doc" +source="http://search.cpan.org/CPAN/authors/id/K/KE/KENSHAN/$_realname.tar.gz" + +_builddir="$srcdir"/$_realname + +build() { + cd "$_builddir" + PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor || return 1 + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 + find "$pkgdir" \( -name perllocal.pod -o -name .packlist \) -delete +} + +md5sums="97d91e38fcadc1f01d8030a8d4f30701 IO-Tee-0.64.tar.gz" +sha256sums="3ed276b1c2d3511338653c2532e73753d284943c1a8f5159ff37fecc2b345ed6 IO-Tee-0.64.tar.gz" +sha512sums="9473a9ce3222ee6998cc53851a34051a9ae5990b9c514b5e5d322832d76f0e20d7af51bf7f06603ad927ab9789e5ab10da7a0693e4867112cd3e1dc1ca25d017 IO-Tee-0.64.tar.gz" |