summaryrefslogtreecommitdiffstats
path: root/testing/perl-ipc-run3/APKBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'testing/perl-ipc-run3/APKBUILD')
-rw-r--r--testing/perl-ipc-run3/APKBUILD39
1 files changed, 0 insertions, 39 deletions
diff --git a/testing/perl-ipc-run3/APKBUILD b/testing/perl-ipc-run3/APKBUILD
deleted file mode 100644
index 520b851e0..000000000
--- a/testing/perl-ipc-run3/APKBUILD
+++ /dev/null
@@ -1,39 +0,0 @@
-# Contributor: Natanael Copa <ncopa@alpinelinux.org>
-# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
-pkgname=perl-ipc-run3
-pkgver=0.044
-pkgrel=0
-pkgdesc="IPC::Run3 perl module"
-url="http://search.cpan.org/dist/IPC-Run3/"
-arch="noarch"
-license="GPLv2 or Artistic"
-depends="perl"
-makedepends="perl-dev"
-install=""
-subpackages="$pkgname-doc"
-source="http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/IPC-Run3-$pkgver.tar.gz"
-
-_builddir="$srcdir"/IPC-Run3-$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="7df73a65d9efc7b9e7eb04075ff1fd8f IPC-Run3-0.044.tar.gz"