Move all to deprecated folder.
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
diff -urpN ezxml/GNUmakefile ezxml.patched/GNUmakefile
|
||||
--- ezxml/GNUmakefile 2006-03-25 18:44:04.000000000 +0100
|
||||
+++ ezxml.patched/GNUmakefile 2008-02-24 13:57:37.000000000 +0100
|
||||
@@ -21,10 +21,10 @@
|
||||
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
||||
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
-CC = gcc
|
||||
-AR = ar
|
||||
+CC ?= gcc
|
||||
+AR ?= ar
|
||||
RM = rm -f
|
||||
-CFLAGS = -Wall -O2
|
||||
+CFLAGS ?= -Wall -O2
|
||||
DEBUG_CFLAGS = -O0 -g
|
||||
OBJS = ezxml.o
|
||||
LIB = libezxml.a
|
||||
6
deprecated/firmware/buildroot/package/ezxml/Config.in
Normal file
6
deprecated/firmware/buildroot/package/ezxml/Config.in
Normal file
@@ -0,0 +1,6 @@
|
||||
config BR2_PACKAGE_EZXML
|
||||
bool "ezxml"
|
||||
help
|
||||
ezXML is a XML parser C library that is simple and easy to use.
|
||||
|
||||
http://ezxml.sf.net
|
||||
2
deprecated/firmware/buildroot/package/ezxml/ezxml.hash
Normal file
2
deprecated/firmware/buildroot/package/ezxml/ezxml.hash
Normal file
@@ -0,0 +1,2 @@
|
||||
# Locally computed:
|
||||
sha256 a68d52257dcb0ff2ad3d71c8c64311edb8030254bb8b581e229aeaba6231cdf9 ezxml-0.8.6.tar.gz
|
||||
28
deprecated/firmware/buildroot/package/ezxml/ezxml.mk
Normal file
28
deprecated/firmware/buildroot/package/ezxml/ezxml.mk
Normal file
@@ -0,0 +1,28 @@
|
||||
################################################################################
|
||||
#
|
||||
# ezxml
|
||||
#
|
||||
################################################################################
|
||||
|
||||
EZXML_VERSION = 0.8.6
|
||||
EZXML_SITE = http://downloads.sourceforge.net/project/ezxml/ezXML/ezXML%20$(EZXML_VERSION)
|
||||
EZXML_INSTALL_STAGING = YES
|
||||
EZXML_LICENSE = MIT
|
||||
EZXML_LICENSE_FILES = license.txt
|
||||
|
||||
define EZXML_BUILD_CMDS
|
||||
$(MAKE) CC="$(TARGET_CC)" CFLAGS="$(TARGET_CFLAGS)" AR=$(TARGET_AR) \
|
||||
-f GNUmakefile -C $(@D)
|
||||
endef
|
||||
|
||||
define EZXML_INSTALL_STAGING_CMDS
|
||||
$(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
|
||||
|
||||
$(eval $(generic-package))
|
||||
Reference in New Issue
Block a user