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 66A995C40F9 for ; Wed, 15 Jun 2016 10:02:56 +0000 (GMT) Received: from ncopa-desktop.alpinelinux.org (12.63.200.37.customer.cdi.no [37.200.63.12]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: n@tanael.org) by newmail.tetrasec.net (Postfix) with ESMTPSA id C2FB65A1587; Wed, 15 Jun 2016 10:02:55 +0000 (GMT) Date: Wed, 15 Jun 2016 12:02:50 +0200 From: Natanael Copa To: Marvin Steadfast Cc: alpine-aports@lists.alpinelinux.org Subject: Re: [alpine-aports] [PATCH] testing/bitlbee-facebook: new package Message-ID: <20160615120250.7109f303@ncopa-desktop.alpinelinux.org> In-Reply-To: <1459861566-353-1-git-send-email-marvin@xsteadfastx.org> References: <1459861566-353-1-git-send-email-marvin@xsteadfastx.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 Hi, Sorry late response. On Tue, 5 Apr 2016 13:06:06 +0000 Marvin Steadfast wrote: > --- > testing/bitlbee-facebook/APKBUILD | 32 ++++++++++++++++++++++++++++++++ > 1 file changed, 32 insertions(+) > create mode 100644 testing/bitlbee-facebook/APKBUILD > > diff --git a/testing/bitlbee-facebook/APKBUILD b/testing/bitlbee-facebook/APKBUILD > new file mode 100644 > index 0000000..c42c968 > --- /dev/null > +++ b/testing/bitlbee-facebook/APKBUILD > @@ -0,0 +1,32 @@ > +# Contributor: Marvin Steadfast > +# Maintainer: Marvin Steadfast > +pkgname=bitlbee-facebook > +pkgver=1.0.0 > +pkgrel=0 > +pkgdesc="Facebook protocol plugin for BitlBee" > +url="https://github.com/jgeboski/bitlbee-facebook" > +arch="all" > +license="GPL" > +depends="bitlbee json-glib" You don't need json-glib in depends. abuild will automatically add "so:libjson-glib-1.0.so.0" as dependency and the package json-glib has a "provides=so:libjson-glib-1.0.so.0" In short: abuild manages shared libs so so you don't need add those manually. I removed it. Thanks! -nc > +depends_dev="" > +makedepends="$depends_dev bitlbee-dev autoconf automake libtool json-glib-dev" > +install="" > +subpackages="" > +source="https://github.com/jgeboski/bitlbee-facebook/releases/download/v${pkgver}/bitlbee-facebook-${pkgver}.tar.gz" > + > +_builddir="$srcdir/bitlbee-facebook-${pkgver}" > +build() { > + cd "$_builddir" > + ./autogen.sh || return 1 > + ./configure || return 1 > + make || return 1 > +} > + > +package() { > + cd "$_builddir" > + make DESTDIR="$pkgdir" install || return 1 > +} > + > +md5sums="22e8044e7678e287534877dadc34fa94 bitlbee-facebook-1.0.0.tar.gz" > +sha256sums="ab3407c3b2f2d5cf90ef2a8b6f9da1ab5833cbad58cdde26a8a8847a48afd795 bitlbee-facebook-1.0.0.tar.gz" > +sha512sums="14cf6263c12636465a73f6fa442083af2c2f7bddc101fca84a8a6cec4b8c58cd0d5e0aea3901c25bd27ea7f2eb5b5fb65543a1501db948066cc780f52339a94e bitlbee-facebook-1.0.0.tar.gz" --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---