X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from mail-yh0-f44.google.com (mail-yh0-f44.google.com [209.85.213.44]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id C23EDDC1379 for ; Fri, 19 Dec 2014 10:26:50 +0000 (UTC) Received: by mail-yh0-f44.google.com with SMTP id c41so238262yho.17 for ; Fri, 19 Dec 2014 02:26:50 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=5JRO/A4zE5ZaFfYbdfqq+IRKl5UgprBcDC9/LIqlTA8=; b=UdOxAOop4zeJG3cwrmsgMpbC8TP2NY/GOtB2vl/LMz0fC6/ZEFm48F7+qjV7M/sM/z Pqki5By77QiDcwozkCu0nvTkkViuhAuzYvnBxGS6AywJkemozuXB95jGg+HPPPI45/xc z1EDpkqQ0O4uMWKneXOHZHUy+IMGs1sANHsNZFT7XPeDl2xopCnvI3eIIi6M76eRDWPd HiFb5NdUZ36/Q4FfY1jzgWAVRY2/XArusllmo+f1FWVVtBX5Mx6WnanHsfSmG0Uqn+Wt 523DXklInrV0yuqTiccszeFzgcv3hW822wDZE7FBJg16Vta4eHYrwrg3zW95xK2VBhij 4OLQ== X-Received: by 10.170.207.5 with SMTP id y5mr6466291yke.28.1418984810380; Fri, 19 Dec 2014 02:26:50 -0800 (PST) Received: from alacerda-dev.bethel.jw.org ([186.233.140.3]) by mx.google.com with ESMTPSA id 21sm5625186yhp.30.2014.12.19.02.26.49 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 19 Dec 2014 02:26:49 -0800 (PST) From: Alan Lacerda X-Google-Original-From: Alan Lacerda To: alpine-devel@lists.alpinelinux.org Cc: Alan Lacerda Subject: [alpine-devel] [PATCH 07/25] testing/mate-menus: fix build function and deps Date: Fri, 19 Dec 2014 10:26:13 +0000 Message-Id: <1418984791-30890-7-git-send-email-alacerda@alpinelinux.org> X-Mailer: git-send-email 2.1.3 In-Reply-To: <1418984791-30890-1-git-send-email-alacerda@alpinelinux.org> References: <1418984791-30890-1-git-send-email-alacerda@alpinelinux.org> X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- testing/mate-menus/APKBUILD | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/testing/mate-menus/APKBUILD b/testing/mate-menus/APKBUILD index c4f5e38..34d909f 100644 --- a/testing/mate-menus/APKBUILD +++ b/testing/mate-menus/APKBUILD @@ -2,15 +2,14 @@ # Maintainer: pkgname=mate-menus pkgver=1.9.1 -pkgrel=0 +pkgrel=1 pkgdesc="The libmate-menu library, the layout configuration files for the MATE menu, as well as a simple menu editor" url="https://github.com/mate-desktop/mate-menus" arch="all" license="GPL2" depends="mate-common" depends_dev="" -makedepends="$depends_dev autoconf automake libtool intltool glib-dev - gobject-introspection-dev" +makedepends="$depends_dev libtool intltool glib-dev gobject-introspection-dev" install="" subpackages="$pkgname-dev $pkgname-lang" source="http://pub.mate-desktop.org/releases/1.9/$pkgname-$pkgver.tar.xz" @@ -28,7 +27,11 @@ prepare() { build() { cd "$_builddir" - ./autogen.sh --prefix=/usr || return 1 + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + || return 1 make || return 1 } -- 2.1.3 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---