X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@lists.alpinelinux.org Received: from mail-yi0-f54.google.com (mail-yi0-f54.google.com [209.85.218.54]) by lists.alpinelinux.org (Postfix) with ESMTP id 5F0EA1EBFF6 for ; Fri, 1 Apr 2011 13:53:19 +0000 (UTC) Received: by yie12 with SMTP id 12so1637904yie.13 for ; Fri, 01 Apr 2011 06:53:18 -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; bh=2gVN1W7J++9KJ6x4bqD5zzazXbiytmdaErylpr3tOsE=; b=sq12uj7LcUWHb9rAFQUuj2Ygr8dt2bFpuzZItSAme9Jp6t6yiCd07xGlwsp1UvfJjR BaOFoOCEIn1CO9zzNBjiF6LyCoQI41ci5OdOPgJ7cRPiCPmitATmvOc9c+0JLTKzN645 hnEfgx8vmWt8594bnZbq2ixx3onOMpHt4YeWE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer; b=TPwXIQrIBCjijC/xWvoqAIKYPf4J8BuETfNbX72SYKjVZ8Oc40f1cbuedGL5jcajb6 zpEm3jX6U4tbGPHnKlJiERpmPWe2pwkT3ER/ypGPuquLzD/oq0764v98toU8+SG1XbeY Zq9A/fPdNqrTswC5y9zpw33V+d1wnIgPaShiU= Received: by 10.236.179.9 with SMTP id g9mr1262639yhm.104.1301665998142; Fri, 01 Apr 2011 06:53:18 -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.16 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 01 Apr 2011 06:53:17 -0700 (PDT) From: Jeff Bilyk To: alpine-devel@lists.alpinelinux.org Cc: Jeff Bilyk Subject: [alpine-devel] [PATCH 1/4] testing/perl-net-snpp: new aport Date: Fri, 1 Apr 2011 09:52:46 +0000 Message-Id: <1301651569-7562-1-git-send-email-jbilyk@gmail.com> X-Mailer: git-send-email 1.7.4.1 X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: perl-net-snpp: new aport --- testing/perl-net-snpp/APKBUILD | 33 +++++++++++++++++++++++++++++++++ 1 files changed, 33 insertions(+), 0 deletions(-) create mode 100644 testing/perl-net-snpp/APKBUILD diff --git a/testing/perl-net-snpp/APKBUILD b/testing/perl-net-snpp/APKBUILD new file mode 100644 index 0000000..4161379 --- /dev/null +++ b/testing/perl-net-snpp/APKBUILD @@ -0,0 +1,33 @@ +# Contributor: Jeff Bilyk +# Maintainer: Leonardo Arena +pkgname=perl-net-snpp +_realname=Net-SNPP +pkgver=1.17 +pkgrel=0 +pkgdesc="Perl Simple Network Pager Protocol Client" +url="http://search.cpan.org/~tobeya/" +arch="x86 x86_64" +license="GPL PerlArtistic" +depends="perl" +makedepends="perl-dev" +install= +subpackages="" +source="http://search.cpan.org/CPAN/authors/id/T/TO/TOBEYA/$_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="18f61a774906cd27ca14dcbf311e6bf0 Net-SNPP-1.17.tar.gz" -- 1.7.4.1 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---