From 607a7e34a9c82b2d7e37bcdefbb1b5c089243ede Mon Sep 17 00:00:00 2001 From: jbu Date: Sat, 20 Jun 2015 09:50:23 +0200 Subject: [PATCH] libgweather: fix cross building Fix a possible typo: $(vopt_enable ...) doesn't expect true/false parameters, but $(vopt_if ...) does. --- srcpkgs/libgweather/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/libgweather/template b/srcpkgs/libgweather/template index 06201d01e16..bb238f9ff1f 100644 --- a/srcpkgs/libgweather/template +++ b/srcpkgs/libgweather/template @@ -1,10 +1,10 @@ # Template file for 'libgweather' pkgname=libgweather version=3.16.1 -revision=1 +revision=2 build_style=gnu-configure build_options="gir" -configure_args="$(vopt_enable gir '--enable-introspection --enable-vala' '--disable-introspection --disable-vala') +configure_args="$(vopt_if gir '--enable-introspection --enable-vala' '--disable-introspection --disable-vala') --disable-schemas-compile --enable-locations-compression --with-zoneinfo-dir=/usr/share/zoneinfo" hostmakedepends="pkg-config intltool glib-devel $(vopt_if gir 'gobject-introspection vala-devel')" makedepends="libxml2-devel libsoup-gnome-devel gtk+3-devel geocode-glib-devel"