X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from mail-we0-f175.google.com (mail-we0-f175.google.com [74.125.82.175]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id E6CC5DC00B5 for ; Tue, 3 Dec 2013 11:54:58 +0000 (UTC) Received: by mail-we0-f175.google.com with SMTP id p61so13260129wes.20 for ; Tue, 03 Dec 2013 03:54:56 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:subject:date:message-id; bh=KbLKSw9jWRtPvKaVi0BKoNrD2sUPmpDcKaoK0Btxl7g=; b=VcKfobBtqnzO5j0EzYxkMPRyx9cTR/jzofjApYgI8D/JtxAL2y1EgSr9ZYTjF9Aeda C7+G+SRTR1BoHyZDnmtoA7+fqcXUeJDedQy8FXw55cfoAVtC6npy/A34FfJPpMQWEofL 5Z8HnmpDO4x8nLjr8vVv4w/DFcpkzbXIlDHGSuyLuloD8Oyh/wH4ZWZ/vr5oLpiDsqAD +KbaB6n9nEN4eCqWJXqQ1kr9M2ftA3KGO2rxx5LY1YUtUk+uRsdB54Jat0FuDTzBRM9h aPDOpZm/pfhVjWwzz2eTckR+0w5IXDD2MtsQ9ruIapldov2cTBqiP//5uVcfY+NiYa9b VZXg== X-Gm-Message-State: ALoCoQmn9p3ES2Ykr3ya4HwgzAkKc2gi57mYzHPBXsME6poH/jI3WCE6JxdT0EAel2pkfrADbqcO X-Received: by 10.180.37.201 with SMTP id a9mr2147328wik.18.1386071696333; Tue, 03 Dec 2013 03:54:56 -0800 (PST) Received: from chlorine.members.linode.com (li677-23.members.linode.com. [88.80.184.23]) by mx.google.com with ESMTPSA id uc18sm4752860wib.11.2013.12.03.03.54.55 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 03 Dec 2013 03:54:55 -0800 (PST) From: Eivind Uggedal To: alpine-devel@lists.alpinelinux.org Subject: [alpine-devel] [PATCH] testing/ghi: new aport Date: Tue, 3 Dec 2013 11:54:53 +0000 Message-Id: <1386071693-5107-1-git-send-email-eivind@uggedal.com> X-Mailer: git-send-email 1.8.4.3 X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- testing/ghi/APKBUILD | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 testing/ghi/APKBUILD diff --git a/testing/ghi/APKBUILD b/testing/ghi/APKBUILD new file mode 100644 index 000000000000..2412dfb27c9f --- /dev/null +++ b/testing/ghi/APKBUILD @@ -0,0 +1,32 @@ +# Maintainer: Eivind Uggedal +pkgname=ghi +pkgver=0.9.0.20131120 +pkgrel=0 +pkgdesc="GitHub Issues on the command line" +url="https://github.com/stephencelis/ghi" +arch="noarch" +license="MIT" +depends="ruby" +makedepends="" +install="" +subpackages="$pkgname-doc" +source="$pkgname-$pkgver.tar.gz::https://github.com/stephencelis/ghi/archive/$pkgver.tar.gz" + +_builddir="$srcdir/$pkgname-$pkgver" + +build() { + cd "$_builddir" + + sed -n '/().$/,$p' README.markdown > LICENSE +} + +package() { + cd "$_builddir" + + install -Dm755 $pkgname "$pkgdir/usr/bin/$pkgname" + install -D -m644 man/$pkgname.1 "$pkgdir"/usr/share/man/man1/$pkgname.1 + install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE +} +md5sums="08f154b4eccf5fbf5ed8f3d13d937af9 ghi-0.9.0.20131120.tar.gz" +sha256sums="b2971718f0a7d5187aa96ac9954bdec9055ecef7df36ca9ef01ce008d4d66368 ghi-0.9.0.20131120.tar.gz" +sha512sums="57dcafd4de34a27a55bc9ac0512c5304c6ea548a2a640d5cc0bf3141802ca2279ee0fc677a0587e76194632ed69657654944e52de7c9b344852e0c73e7e1530a ghi-0.9.0.20131120.tar.gz" -- 1.8.4.3 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---