X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from mail-yh0-f48.google.com (mail-yh0-f48.google.com [209.85.213.48]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 494F4DCED26 for ; Fri, 19 Dec 2014 10:27:02 +0000 (UTC) Received: by mail-yh0-f48.google.com with SMTP id i57so238069yha.21 for ; Fri, 19 Dec 2014 02:27:02 -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=AE8NPDm1CnG+QAbjvMiTp2e+48hJUQbQHc8Ibr7dcwo=; b=TVRTC2n6WxNPhy+nGhrvntekUrrYQj/ZZegi+ZkEKiTgi8qHvno5u71BzyLOnajdSa iocy/xVR/67B7LOsCO8vgN67kppIDtdGHjaUELXnrWyMCrtnDuAqM5Dc8Pb/aVjGOvvG BkIS5CfXX4OLq+Nv3E6E/8ymgp1kdiZLJatOo5KooufIKGCjWJKxMm125v4NiWp8LgJ7 sU2YL/haQZ9LqRE5tWQQJlTUXRbBUUsG3GdoTbGHMxHWUTJ3NEfbDxN7/iIBQ0hK1LaT ZXPuKgyd4x6xkNmG9MXE3vfulN3JFH9mzgMJwQgUJHeIRhIaReRi1p3tZs++yo88Kc8f O4HQ== X-Received: by 10.170.51.199 with SMTP id 190mr6470710ykt.104.1418984821952; Fri, 19 Dec 2014 02:27:01 -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.27.00 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 19 Dec 2014 02:27:01 -0800 (PST) From: Alan Lacerda X-Google-Original-From: Alan Lacerda To: alpine-devel@lists.alpinelinux.org Cc: Alan Lacerda Subject: [alpine-devel] [PATCH 15/25] testing/mate-polkit: fix build function and deps Date: Fri, 19 Dec 2014 10:26:21 +0000 Message-Id: <1418984791-30890-15-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-polkit/APKBUILD | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/testing/mate-polkit/APKBUILD b/testing/mate-polkit/APKBUILD index 9c8f739..d9fff2c 100644 --- a/testing/mate-polkit/APKBUILD +++ b/testing/mate-polkit/APKBUILD @@ -2,15 +2,15 @@ # Maintainer: pkgname=mate-polkit pkgver=1.9.0 -pkgrel=0 +pkgrel=1 pkgdesc="MATE Authentication Agent for PolicyKit" url="https://github.com/mate-desktop/mate-polkit" arch="all" license="GPL2" depends="mate-common" depends_dev="" -makedepends="$depends_dev polkit-dev autoconf automake libtool intltool gtk-doc - glib-dev gtk+-dev gobject-introspection-dev" +makedepends="$depends_dev polkit-dev libtool intltool gtk+-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 +28,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 ---