X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mout02.posteo.de (mout02.posteo.de [185.67.36.66]) by lists.alpinelinux.org (Postfix) with ESMTP id 7B90A5C4161 for ; Tue, 5 Jul 2016 12:34:12 +0000 (GMT) Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id BC9C020BE4 for ; Tue, 5 Jul 2016 14:34:10 +0200 (CEST) Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 3rkNc01Fl4zyfr for ; Tue, 5 Jul 2016 14:34:07 +0200 (CEST) From: Klemens Nanni To: alpine-aports@lists.alpinelinux.org Subject: [alpine-aports] [PATCH 1/2] testing/lzlib: new aport Date: Tue, 5 Jul 2016 14:34:04 +0200 Message-Id: <20160705123405.27706-1-kl3@posteo.org> X-Mailer: git-send-email 2.8.3 X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- testing/lzlib/APKBUILD | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 testing/lzlib/APKBUILD diff --git a/testing/lzlib/APKBUILD b/testing/lzlib/APKBUILD new file mode 100644 index 0000000..1c3701f --- /dev/null +++ b/testing/lzlib/APKBUILD @@ -0,0 +1,30 @@ +# Contributor: Klemens Nanni +# Maintainer: Klemens Nanni +pkgname=lzlib +pkgver=1.8 +pkgrel=0 +pkgdesc="Lzlib is a data compression library" +url="http://www.nongnu.org/lzip/lzlib.html" +arch="all" +license="GPL2+" +depends="" +depends_dev="" +makedepends="" +install="" +subpackages="$pkgname-doc" +source="http://download.savannah.gnu.org/releases/lzip/${pkgname}/${pkgname}-${pkgver}.tar.gz" + +builddir="${srcdir}/${pkgname}-${pkgver}" +build() { + cd "${builddir}" + ./configure --prefix=/usr + make || return 1 +} + +package() { + cd "${builddir}" + make DESTDIR="${pkgdir}" install || return 1 +} +md5sums="251e982d20f10a22069910f2f3951613 lzlib-1.8.tar.gz" +sha256sums="41bfa82c6ee184ed0884437dc4074ad505e64cb747432cefa97976b89045cbad lzlib-1.8.tar.gz" +sha512sums="4fe8e28068f67d377bcfb0b7335650acd03565f9c8ac247c87a2b4951b82bae5e8b82d8a537bae84ed13ee09555e7ffbf573a2b3738d9bc86771897981cd549b lzlib-1.8.tar.gz" -- 2.8.3 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---