X-Original-To: alpine-aports@mail.alpinelinux.org Delivered-To: alpine-aports@mail.alpinelinux.org Received: from mail.alpinelinux.org (dallas-a1.alpinelinux.org [127.0.0.1]) by mail.alpinelinux.org (Postfix) with ESMTP id EDBE6DC164B for ; Wed, 1 Jul 2015 22:35:05 +0000 (UTC) Received: from mail-wi0-f179.google.com (mail-wi0-f179.google.com [209.85.212.179]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 9862BDC02A4 for ; Wed, 1 Jul 2015 22:35:05 +0000 (UTC) Received: by wicgi11 with SMTP id gi11so58090193wic.0 for ; Wed, 01 Jul 2015 15:35:03 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=O2veD0Z1Pg37COij8Lqk9C/7NBj701l7jRptNyQsX/M=; b=bw4sZbHvIFz6w6ox8IyM4HXumi1m7DpcErqM2g0O5MKdHp9A0iPw5vtqlDAkNb7PLw yH+uB0c0PxxCvQHLGzUJs09JXI24JDKY7mYYixKwJqlEbskft1MvHMcyTyi7i6NsSgaC +z5CwJztPd4Mll4mmxH7HoAtSKHcybCpU4zekAY35377DlIDqm/jhmBs3PwLTeFOcEe8 g6Y9j++WvX/FxTt59s9uCNmiPAwThyHKau33bCVaGNndQg8zEVuHQ0UaMAOTNbhI6cy9 cNYwehvXEoqJHidpzUVEg32xq3Jpq3iuT2mvd2e7vfeQ7ui7GfcTVIIQr9J/4Neq3Q0A zE8w== X-Received: by 10.180.211.109 with SMTP id nb13mr46727796wic.8.1435789644040; Wed, 01 Jul 2015 15:27:24 -0700 (PDT) Received: from localhost.localdomain ([62.225.2.111]) by mx.google.com with ESMTPSA id dz4sm24018551wib.17.2015.07.01.15.27.22 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 01 Jul 2015 15:27:22 -0700 (PDT) From: Anton Patrushev To: alpine-aports@lists.alpinelinux.org Cc: Anton Patrushev Subject: [alpine-aports] [PATCH] testing/pbzip2: new aport Date: Wed, 1 Jul 2015 22:27:28 +0000 Message-Id: <1435789648-2762-1-git-send-email-apatrushev@gmail.com> X-Mailer: git-send-email 2.4.5 X-Virus-Scanned: ClamAV using ClamSMTP X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: http://compression.ca/pbzip2/ PBZIP2 is a parallel implementation of the bzip2 block-sorting file compressor. --- testing/pbzip2/APKBUILD | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 testing/pbzip2/APKBUILD diff --git a/testing/pbzip2/APKBUILD b/testing/pbzip2/APKBUILD new file mode 100644 index 0000000..26b5870 --- /dev/null +++ b/testing/pbzip2/APKBUILD @@ -0,0 +1,31 @@ +# Contributor: Anton Patrushev +# Maintainer: +pkgname=pbzip2 +pkgver=1.1 +pkgrel=12 +pkgdesc="pbzip2 is a parallel implementation of the bzip2 block-sorting file compressor." +url="http://compression.ca/pbzip2/" +arch="all" +license="BSD" +depends="bzip2" +makedepends="bzip2-dev" +subpackages="" +source="https://launchpad.net/pbzip2/$pkgver/$pkgver.$pkgrel/+download/pbzip2-$pkgver.$pkgrel.tar.gz" + +_builddir="$srcdir"/$pkgname-$pkgver.$pkgrel +prepare() { + local i + cd "$_builddir" + make || return 1 +} + +build() { + cd "$_builddir" +} + +package() { + cd "$_builddir" + make PREFIX="$pkgdir"/usr install || return 1 +} +md5sums="91a4911b13305850423840eb0fa6f4f9 pbzip2-1.1.12.tar.gz" + -- 2.4.5 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---