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 4BF8A1EC802 for ; Fri, 1 Apr 2011 13:53:24 +0000 (UTC) Received: by yie12 with SMTP id 12so1637961yie.13 for ; Fri, 01 Apr 2011 06:53:24 -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=eRSq3PIeD2bYzFizwzbQ9WIL23qI/Ge61gUqmpxeJSg=; b=AfzAmQhMaSNMNQzFt1Oennn4cj5bwtSA+ND33hZKrbUynQXppiOmJy7KrenigX0I7l 2xLr4tTDqvNCDpwh6Kq3zSA/vIci1krNNFtUDgRcoqyoKXwnKrhcM4nnBgNqQfGpMJVM nsGGmsD1Z7yXW0tvZGZpx9Lrg9YIq0SipC4+M= 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=JUoRUVhKQyVfUFsl19FkQFmM1IIuxUc+4I3mOmS7Sh3rvSbo1WM1ApD6651DFuz9yI pS2sL3gAIfM6TlGnWhlUr14BE/nr90Xqel61uVgBK241OYvKZYfWwCPqxTuNN06pIvOB Daay8JcfS94PzcGyqS8gYzphWUqRO4o5o1lYM= Received: by 10.236.78.33 with SMTP id f21mr568144yhe.123.1301666003953; Fri, 01 Apr 2011 06:53:23 -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.22 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 01 Apr 2011 06:53:22 -0700 (PDT) From: Jeff Bilyk To: alpine-devel@lists.alpinelinux.org Cc: Jeff Bilyk Subject: [alpine-devel] [PATCH 2/4] testing/perl-sys-hostname-long: new aport Date: Fri, 1 Apr 2011 09:52:47 +0000 Message-Id: <1301651569-7562-2-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: testing/perl-sys-hostname-long: new aport --- testing/perl-sys-hostname-long/APKBUILD | 33 +++++++++++++++++++++++++++++++ 1 files changed, 33 insertions(+), 0 deletions(-) create mode 100644 testing/perl-sys-hostname-long/APKBUILD diff --git a/testing/perl-sys-hostname-long/APKBUILD b/testing/perl-sys-hostname-long/APKBUILD new file mode 100644 index 0000000..ebff46a --- /dev/null +++ b/testing/perl-sys-hostname-long/APKBUILD @@ -0,0 +1,33 @@ +# Contributor: Jeff Bilyk +# Maintainer: Leonardo Arena +pkgname=perl-sys-hostname-long +_realname=Sys-Hostname-Long +pkgver=1.4 +pkgrel=0 +pkgdesc="Perl Module to get full hostname" +url="http://search.cpan.org/~scott/" +arch="x86 x86_64" +license="GPL PerlArtistic" +depends="perl" +makedepends="perl-dev" +install= +subpackages="" +source="http://search.cpan.org/CPAN/authors/id/S/SC/SCOTT/$_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="a5b3c23754cbcff10e283d16c42ec3d3 Sys-Hostname-Long-1.4.tar.gz" -- 1.7.4.1 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---