X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@lists.alpinelinux.org Received: from mail-yx0-f182.google.com (mail-yx0-f182.google.com [209.85.213.182]) by lists.alpinelinux.org (Postfix) with ESMTP id CD32A1EC806 for ; Fri, 1 Apr 2011 13:53:27 +0000 (UTC) Received: by yxl31 with SMTP id 31so1636325yxl.13 for ; Fri, 01 Apr 2011 06:53:27 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:from:to:cc:subject:date:message-id:x-mailer :in-reply-to:references; bh=NwRot1CxOZdSlniE9x8InQ9/GI0jfdm3Ot8C3A8Ccf4=; b=J+cApjsCgbrFel7gUvv586In6hRlO9LKD90fx5DmKXbSnDeDqhPlW3R0a+hgSM5Iqy 8NsXM8wXx/LStSZIunZtUcdog+wW3zGAGCaAh6bCALydHbINpPMVcoBJtvXjwIzPGY9K 2dv+oGGBB+buLxkEFRHhJ+3wE0OkHCAKmh1VA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; b=kwAfNiFzNABYjK1Aypho/gEdbkkcjxDIo7pHMKfBNfYqihuY/YJiAh2xVcP/4Uwmgk Yi29CNTaFaJ+w0+GldaOCBkX5C5nejxZejAdPGH18nJHNUMQESdQC5fPNFEOnLrn/7+2 C3h8wFNXXq2TUwqK4qyQ+28o+NJC8yLsCei+4= Received: by 10.236.177.106 with SMTP id c70mr5623414yhm.306.1301666007272; Fri, 01 Apr 2011 06:53:27 -0700 (PDT) Received: from localhost.localdomain (209.250.132.162.tor.pathcom.com [209.250.132.162]) by mx.google.com with ESMTPS id x50sm1097393yhc.18.2011.04.01.06.53.25 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 01 Apr 2011 06:53:26 -0700 (PDT) From: Jeff Bilyk To: alpine-devel@lists.alpinelinux.org Cc: Jeff Bilyk Subject: [alpine-devel] [PATCH 3/4] testing/perl-test-mockobject: new aport Date: Fri, 1 Apr 2011 09:52:48 +0000 Message-Id: <1301651569-7562-3-git-send-email-jbilyk@gmail.com> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1301651569-7562-1-git-send-email-jbilyk@gmail.com> References: <1301651569-7562-1-git-send-email-jbilyk@gmail.com> X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: perl-test-mockobject: new aport --- testing/perl-test-mockobject/APKBUILD | 33 +++++++++++++++++++++++++++++++++ 1 files changed, 33 insertions(+), 0 deletions(-) create mode 100644 testing/perl-test-mockobject/APKBUILD diff --git a/testing/perl-test-mockobject/APKBUILD b/testing/perl-test-mockobject/APKBUILD new file mode 100644 index 0000000..ff690f4 --- /dev/null +++ b/testing/perl-test-mockobject/APKBUILD @@ -0,0 +1,33 @@ +# Contributor: Jeff Bilyk +# Maintainer: Leonardo Arena +pkgname=perl-test-mockobject +_realname=Test-MockObject +pkgver=1.09 +pkgrel=0 +pkgdesc="Perl Mock part of an object or class" +url="http://search.cpan.org/~chromatic/" +arch="x86 x86_64" +license="GPL PerlArtistic" +depends="perl" +makedepends="perl-dev" +install= +subpackages="" +source="http://search.cpan.org/CPAN/authors/id/C/CH/CHROMATIC/$_realname-$pkgver.tar.gz" + +_builddir="$srcdir/$_realname-$pkgver" + +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 + # creates file collision among perl modules + find "$pkgdir" -name perllocal.pod -delete + +} + +md5sums="3c9c2842d40fa8c389563c227804d7d8 Test-MockObject-1.09.tar.gz" -- 1.7.4.1 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---