X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from mailoo.org (arnold.mailoo.org [212.83.147.198]) by mail.alpinelinux.org (Postfix) with ESMTP id 15719DC0307 for ; Tue, 28 Oct 2014 10:11:06 +0000 (UTC) Received: from localhost (localhost.localdomain [127.0.0.1]) by arnold.mailoo.org (Postfix) with ESMTP id 5F133196 for ; Tue, 28 Oct 2014 11:11:06 +0100 (CET) Received: from localhost (luy13-1-78-237-114-197.fbx.proxad.net [78.237.114.197]) by arnold.mailoo.org (Postfix) with ESMTPSA id 1C16B16D; Tue, 28 Oct 2014 11:11:06 +0100 (CET) Date: Tue, 28 Oct 2014 11:11:05 +0100 From: Willy Goiffon To: alpine-devel@lists.alpinelinux.org Subject: [alpine-devel] testing/skroll: new aport Message-ID: <20141028101105.GA17866@gavroche> X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="HlL+5n6rz5pIUxbD" Content-Disposition: inline User-Agent: Mutt/1.5.23 (2014-03-12) --HlL+5n6rz5pIUxbD Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi ! I created a port for "skroll", a tool I wrote. It takes input in stdin and scroll it to stdout. Please find the patch for the APKBUILD as an attachement. Cheers. -- Willy --HlL+5n6rz5pIUxbD Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="testing-skroll-new-aport.patch" >From 51bd3d20fd52ff578afe312b169adabf44e9508a Mon Sep 17 00:00:00 2001 From: z3bra Date: Tue, 28 Oct 2014 10:37:47 +0100 Subject: [PATCH] testing/skroll: new aport --- testing/skroll/APKBUILD | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 testing/skroll/APKBUILD diff --git a/testing/skroll/APKBUILD b/testing/skroll/APKBUILD new file mode 100644 index 0000000..7244392 --- /dev/null +++ b/testing/skroll/APKBUILD @@ -0,0 +1,31 @@ +# Contributor: z3bra +# Maintainer: z3bra +pkgname=skroll +pkgver=0.4 +pkgrel=0 +pkgdesc="scroll text to stdout" +url="http://git.z3bra.org/cgit.cgi/skroll/" +arch="all" +license="wtfpl" +depends="" +depends_dev="" +makedepends="$depends_dev" +install="" +subpackages="$pkgname-doc" +source="http://git.z3bra.org/cgit.cgi/$pkgname/snapshot/$pkgname-$pkgver.tar.bz2" + +_builddir=$srcdir/$pkgname-$pkgver + +build() { + cd "$_builddir" + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 +} + +md5sums="bd5e78abb228ca976fdd1673171033cc skroll-0.4.tar.bz2" +sha256sums="45d7ab6bd078adc0a4230f05f406e0db47cc0789e3f9c8434488ea28b1ca4c64 skroll-0.4.tar.bz2" +sha512sums="ba9caeee802645743fda27d8992df49610887d9157d6cf953648dd34b4786a3be04f58857f78ed018dbef0730fbabf738ccc330038b9dc9561d2860bfc65fabe skroll-0.4.tar.bz2" -- 2.0.4 --HlL+5n6rz5pIUxbD-- --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---