4182346f4b
This reverts commit 1ec1f86551
, which
causes numerous build failures due to Rust handling problems. See the
thread at
http://lists.busybox.net/pipermail/buildroot/2018-June/223642.html for
details.
Fixes (or rather avoids):
http://autobuild.buildroot.net/results/26102d0ec258d5ef3af36ac32371fba1c996965b/
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
22 lines
920 B
Makefile
22 lines
920 B
Makefile
################################################################################
|
|
#
|
|
# librsvg
|
|
#
|
|
################################################################################
|
|
|
|
LIBRSVG_VERSION_MAJOR = 2.40
|
|
LIBRSVG_VERSION = $(LIBRSVG_VERSION_MAJOR).20
|
|
LIBRSVG_SITE = http://ftp.gnome.org/pub/gnome/sources/librsvg/$(LIBRSVG_VERSION_MAJOR)
|
|
LIBRSVG_SOURCE = librsvg-$(LIBRSVG_VERSION).tar.xz
|
|
LIBRSVG_INSTALL_STAGING = YES
|
|
LIBRSVG_CONF_OPTS = --disable-pixbuf-loader --disable-tools --enable-introspection=no
|
|
HOST_LIBRSVG_CONF_OPTS = --enable-introspection=no
|
|
LIBRSVG_DEPENDENCIES = cairo host-gdk-pixbuf gdk-pixbuf libcroco libglib2 libxml2 pango \
|
|
$(if $(BR2_PACKAGE_LIBGTK3),libgtk3)
|
|
HOST_LIBRSVG_DEPENDENCIES = host-cairo host-gdk-pixbuf host-libcroco host-libglib2 host-libxml2 host-pango
|
|
LIBRSVG_LICENSE = LGPL-2.0+
|
|
LIBRSVG_LICENSE_FILES = COPYING.LIB
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|