2008-02-24 21:18:00 +01:00
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# ezxml
|
|
|
|
#
|
|
|
|
#############################################################
|
2010-09-26 09:13:59 +02:00
|
|
|
EZXML_VERSION = 0.8.6
|
|
|
|
EZXML_SOURCE = ezxml-$(EZXML_VERSION).tar.gz
|
|
|
|
EZXML_SITE = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/ezxml/
|
|
|
|
EZXML_INSTALL_STAGING=YES
|
2008-02-24 21:18:00 +01:00
|
|
|
|
2010-09-26 09:13:59 +02:00
|
|
|
define EZXML_BUILD_CMDS
|
2010-07-06 09:27:32 +02:00
|
|
|
$(MAKE) CC="$(TARGET_CC)" CFLAGS="$(TARGET_CFLAGS)" AR=$(TARGET_AR) \
|
2010-09-26 09:13:59 +02:00
|
|
|
-f GNUmakefile -C $(@D)
|
|
|
|
endef
|
2008-02-24 21:18:00 +01:00
|
|
|
|
2010-09-26 09:13:59 +02:00
|
|
|
define EZXML_INSTALL_STAGING_CMDS
|
2010-09-26 14:34:43 +02:00
|
|
|
install -D -m 0644 $(@D)/ezxml.h $(STAGING_DIR)/usr/include/ezxml.h
|
|
|
|
install -D -m 0644 $(@D)/libezxml.a $(STAGING_DIR)/usr/lib/libezxml.a
|
|
|
|
endef
|
|
|
|
|
|
|
|
define EZXML_INSTALL_TARGET_CMDS
|
|
|
|
install -D -m 0644 $(@D)/ezxml.h $(TARGET_DIR)/usr/include/ezxml.h
|
|
|
|
install -D -m 0644 $(@D)/libezxml.a $(TARGET_DIR)/usr/lib/libezxml.a
|
|
|
|
endef
|
|
|
|
|
|
|
|
define EZXML_UNINSTALL_STAGING_CMDS
|
|
|
|
rm -f $(STAGING_DIR)/usr/include/ezxml.h
|
|
|
|
rm -f $(STAGING_DIR)/usr/lib/libezxml.a
|
|
|
|
endef
|
|
|
|
|
|
|
|
define EZXML_UNINSTALL_TARGET_CMDS
|
|
|
|
rm -f $(TARGET_DIR)/usr/include/ezxml.h
|
|
|
|
rm -f $(TARGET_DIR)/usr/lib/libezxml.a
|
2010-09-26 09:13:59 +02:00
|
|
|
endef
|
2008-02-24 21:18:00 +01:00
|
|
|
|
2010-09-26 09:13:59 +02:00
|
|
|
define EZXML_CLEAN_CMDS
|
|
|
|
-$(MAKE) -C $(@D) -f GNUmakefile clean
|
|
|
|
endef
|
2008-02-24 21:18:00 +01:00
|
|
|
|
2011-09-29 21:57:42 +02:00
|
|
|
$(eval $(call GENTARGETS))
|