aaffd209fa
To be consistent with the recent change of FOO_MAKE_OPT into FOO_MAKE_OPTS, make the same change for FOO_CONF_OPT. Sed command used: find * -type f | xargs sed -i 's#_CONF_OPT\>#&S#g' Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
23 lines
709 B
Makefile
23 lines
709 B
Makefile
################################################################################
|
|
#
|
|
# librsvg
|
|
#
|
|
################################################################################
|
|
|
|
LIBRSVG_VERSION_MAJOR = 2.26
|
|
LIBRSVG_VERSION = $(LIBRSVG_VERSION_MAJOR).3
|
|
LIBRSVG_SITE = http://ftp.gnome.org/pub/GNOME/sources/librsvg/$(LIBRSVG_VERSION_MAJOR)
|
|
LIBRSVG_INSTALL_STAGING = YES
|
|
LIBRSVG_CONF_OPTS = --disable-tools
|
|
LIBRSVG_DEPENDENCIES = libxml2 cairo pango libglib2 gdk-pixbuf
|
|
LIBRSVG_LICENSE = LGPLv2+
|
|
LIBRSVG_LICENSE_FILES = COPYING.LIB
|
|
|
|
# If we have Gtk2, let's build it first to benefit from librsvg Gtk
|
|
# support.
|
|
ifeq ($(BR2_PACKAGE_LIBGTK2),y)
|
|
LIBRSVG_DEPENDENCIES += libgtk2
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|