X-Original-To: alpine-aports@lists.alpinelinux.org Received: from newmail.tetrasec.net (unknown [172.21.74.12]) by lists.alpinelinux.org (Postfix) with ESMTP id 234765C4164 for ; Tue, 5 Jul 2016 11:24:27 +0000 (GMT) Received: from ncopa-desktop.copa.dup.pw (71.63.200.37.customer.cdi.no [37.200.63.71]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: n@tanael.org) by newmail.tetrasec.net (Postfix) with ESMTPSA id 79F095A12E2; Tue, 5 Jul 2016 11:24:26 +0000 (GMT) Date: Tue, 5 Jul 2016 13:24:08 +0200 From: Natanael Copa To: Klemens Nanni Cc: alpine-aports@lists.alpinelinux.org Subject: Re: [alpine-aports] [PATCH 2/3] main/plzip: new aport Message-ID: <20160705132408.3235e894@ncopa-desktop.copa.dup.pw> In-Reply-To: <20160625135204.21344-2-kl3@posteo.org> References: <20160625135204.21344-2-kl3@posteo.org> X-Mailer: Claws Mail 3.13.2 (GTK+ 2.24.28; x86_64-alpine-linux-musl) X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit On Sat, 25 Jun 2016 15:52:03 +0200 Klemens Nanni wrote: > --- > main/plzip/APKBUILD | 30 ++++++++++++++++++++++++++++++ > 1 file changed, 30 insertions(+) > create mode 100644 main/plzip/APKBUILD > > diff --git a/main/plzip/APKBUILD b/main/plzip/APKBUILD > new file mode 100644 > index 0000000..e98735f > --- /dev/null > +++ b/main/plzip/APKBUILD > @@ -0,0 +1,30 @@ > +# Contributor: Klemens Nanni > +# Maintainer: Klemens Nanni > +pkgname=plzip > +pkgver=1.5 > +pkgrel=0 > +pkgdesc="Plzip is a massively parallel lossless data compressor" > +url="http://www.nongnu.org/lzip/plzip.html" > +arch="all" > +license="GPL2+" > +depends="lzlib" I think this dependency should be automatically detected. We don't add explicit dependencies for shared libraries as abuild will handle that automatically. > +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="504d46ba468d337ec6c42f3c583632ba plzip-1.5.tar.gz" > +sha256sums="cd401683c2c57ecf170c99a873e41e9e5fee0e9680341646e31032e31489cc8a plzip-1.5.tar.gz" > +sha512sums="af3f7b6cb249686286d90683c3040591e0bc362dc4c10c054836de179e52755539650963c06a21f76f3db418ed08606c754af73af1d5baf081f434ddcadd01c5 plzip-1.5.tar.gz" --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---