e1502ebc0c
Also remove the redundant $(call ...). This is a purely mechanical change, performed with find package linux toolchain boot -name \*.mk | \ xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \ -e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \ -e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
41 lines
1.1 KiB
Makefile
41 lines
1.1 KiB
Makefile
############################################################
|
|
#
|
|
# libsvgtiny
|
|
#
|
|
############################################################
|
|
|
|
LIBSVGTINY_SITE = svn://svn.netsurf-browser.org/trunk/libsvgtiny
|
|
LIBSVGTINY_VERSION = 12121
|
|
LIBSVGTINY_INSTALL_STAGING = YES
|
|
LIBSVGTINY_DEPENDENCIES = libxml2 host-gperf host-pkg-config
|
|
|
|
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_UNINSTALL_STAGING_CMDS
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
$(MAKE) -C $(@D) PREFIX=/usr DESTDIR=$(STAGING_DIR) uninstall
|
|
endef
|
|
|
|
define LIBSVGTINY_INSTALL_TARGET_CMDS
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
$(MAKE) -C $(@D) PREFIX=/usr DESTDIR=$(TARGET_DIR) install
|
|
endef
|
|
|
|
define LIBSVGTINY_UNINSTALL_TARGET_CMDS
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
$(MAKE) -C $(@D) PREFIX=/usr DESTDIR=$(TARGET_DIR) uninstall
|
|
endef
|
|
|
|
define LIBSVGTINY_CLEAN_CMDS
|
|
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) clean
|
|
endef
|
|
|
|
$(eval $(generic-package))
|