X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from ncopa-desktop.alpinelinux.org (unknown [79.160.13.133]) (using TLSv1 with cipher ECDHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) (Authenticated sender: n@tanael.org) by mail.alpinelinux.org (Postfix) with ESMTPSA id 65A27DC014A; Tue, 16 Dec 2014 15:55:17 +0000 (UTC) Date: Tue, 16 Dec 2014 16:55:14 +0100 From: Natanael Copa To: Alan Lacerda Cc: alpine-devel@lists.alpinelinux.org, Alan Lacerda Subject: Re: [alpine-devel] [PATCH] testing/mate-common: new aport Message-ID: <20141216165514.4999906a@ncopa-desktop.alpinelinux.org> In-Reply-To: <1418654564-1736-1-git-send-email-alacerda@alpinelinux.org> References: <1418654564-1736-1-git-send-email-alacerda@alpinelinux.org> X-Mailer: Claws Mail 3.11.0 (GTK+ 2.24.23; x86_64-alpine-linux-musl) X-Mailinglist: alpine-devel 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 Mon, 15 Dec 2014 14:42:44 +0000 Alan Lacerda wrote: > --- > testing/mate-common/APKBUILD | 41 +++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 41 insertions(+) > create mode 100644 testing/mate-common/APKBUILD > > diff --git a/testing/mate-common/APKBUILD b/testing/mate-common/APKBUILD > new file mode 100644 > index 0000000..f6895da > --- /dev/null > +++ b/testing/mate-common/APKBUILD > @@ -0,0 +1,41 @@ > +# Contributor: Alan Lacerda > +# Maintainer: > +pkgname=mate-common > +pkgver=1.9.0 > +pkgrel=0 > +pkgdesc="Common scripts and macros" > +url="http://mate-desktop.org/" > +arch="noarch" > +license="CC" license is gplv3+ > +depends="" > +depends_dev="" > +makedepends="autoconf automake gettext" > +install="" > +subpackages="" > +source="http://pub.mate-desktop.org/releases/1.9/$pkgname-$pkgver.tar.xz" > + > +_builddir="$srcdir/$pkgname-$pkgver" > +prepare() { > + local i > + cd "$_builddir" > + for i in $source; do > + case $i in > + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; > + esac > + done > +} > + > +build() { > + cd "$_builddir" > + ./autogen.sh --prefix=/usr || return 1 There is no need to run autogen when the shipped configure works. I applied and fixed the above mentioned issues. thanks! -nc --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---