31783dcf55
This reverts commit 8f9b5f657b
.
The new svgtiny version does not build at all, see:
http://autobuild.buildroot.org/results/242/24257e9739df8f589150336cb6213812516bf465/
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
29 lines
811 B
Makefile
29 lines
811 B
Makefile
################################################################################
|
|
#
|
|
# libsvgtiny
|
|
#
|
|
################################################################################
|
|
|
|
LIBSVGTINY_SITE = svn://svn.netsurf-browser.org/trunk/libsvgtiny
|
|
LIBSVGTINY_VERSION = 12121
|
|
LIBSVGTINY_INSTALL_STAGING = YES
|
|
LIBSVGTINY_DEPENDENCIES = libxml2 host-gperf host-pkgconf
|
|
LIBSVGTINY_LICENSE = MIT
|
|
LIBSVGTINY_LICENSE_FILES = README
|
|
|
|
define LIBSVGTINY_BUILD_CMDS
|
|
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) PREFIX=/usr
|
|
endef
|
|
|
|
define LIBSVGTINY_INSTALL_STAGING_CMDS
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
$(MAKE) -C $(@D) PREFIX=/usr DESTDIR=$(STAGING_DIR) install
|
|
endef
|
|
|
|
define LIBSVGTINY_INSTALL_TARGET_CMDS
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
$(MAKE) -C $(@D) PREFIX=/usr DESTDIR=$(TARGET_DIR) install
|
|
endef
|
|
|
|
$(eval $(generic-package))
|