X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from mail-yh0-f53.google.com (mail-yh0-f53.google.com [209.85.213.53]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id B3481DC8118 for ; Fri, 19 Dec 2014 10:26:53 +0000 (UTC) Received: by mail-yh0-f53.google.com with SMTP id i57so237379yha.26 for ; Fri, 19 Dec 2014 02:26:53 -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=QzsytmxU8qVDi+qHXUZnKieCZQDXZlKQHVBXjYhnhqk=; b=br5Kt3J/gxzOLrepGxnEwkXOOJd+go+9woPu/jDTvlE7h95mtWgmspGY4e3k+XX0E7 1WkWux+XhA214hpjr6nm1ljYm3EZy59DaH7xjH4Rkquifmf2gpAwBb3xNnaoR1eBZj3/ CBD6oOvRiVhuFKlvmhpZcqVqvEJ7EzZ4WFlnWskB7hUcP/08wN7JXz8nE4SABq8Vg0oT hbHFIGFT2YU7FK0BvxLjreYRVfjDTdBAuwUieljfHzRMIV4vIQnMosEmvFQDmYJj35gm Q5gfAq8Tdo+bhIPLfhBKZOQ6HhMjVWL2lwkVscgYLFZmBwGfZ2POXKREi258/UtMcyJi +a9g== X-Received: by 10.170.154.215 with SMTP id v206mr6520237ykc.10.1418984813270; Fri, 19 Dec 2014 02:26:53 -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.51 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 19 Dec 2014 02:26:52 -0800 (PST) From: Alan Lacerda X-Google-Original-From: Alan Lacerda To: alpine-devel@lists.alpinelinux.org Cc: Alan Lacerda Subject: [alpine-devel] [PATCH 09/25] testing/libmateweather: fix build function and deps Date: Fri, 19 Dec 2014 10:26:15 +0000 Message-Id: <1418984791-30890-9-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/libmateweather/APKBUILD | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/testing/libmateweather/APKBUILD b/testing/libmateweather/APKBUILD index 99184fc..fc539d4 100644 --- a/testing/libmateweather/APKBUILD +++ b/testing/libmateweather/APKBUILD @@ -2,17 +2,16 @@ # Maintainer: pkgname=libmateweather pkgver=1.9.1 -pkgrel=0 +pkgrel=1 pkgdesc="A library to access weather information from online services for numerous locations" url="https://github.com/mate-desktop/libmateweather" arch="all" license="GPL2" depends="mate-common" depends_dev="" -makedepends="$depends_dev libsoup-dev autoconf automake libtool intltool glib-dev - gtk+-dev gtk-doc" +makedepends="$depends_dev libsoup-dev libtool intltool glib-dev gtk+-dev gtk-doc" install="" -subpackages="$pkgname-dev $pkgname-doc" +subpackages="$pkgname-dev $pkgname-doc $pkgname-lang" source="http://pub.mate-desktop.org/releases/1.9/$pkgname-$pkgver.tar.xz" _builddir="$srcdir/$pkgname-$pkgver" @@ -28,8 +27,12 @@ prepare() { build() { cd "$_builddir" - ./autogen.sh --prefix=/usr \ - --with-zoneinfo-dir || return 1 + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + --with-zoneinfo-dir \ + || return 1 make || return 1 } -- 2.1.3 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---