Move all to deprecated folder.
This commit is contained in:
@@ -0,0 +1,55 @@
|
||||
From: Baruch Siach <baruch@tkos.co.il>
|
||||
Subject: [PATCH] mxml: workaround for cross build
|
||||
|
||||
The added patch is a workaround for cross build as follows:
|
||||
|
||||
* disable run of a test binary at build time
|
||||
* disable generation of documentation using the mxmldoc binary
|
||||
* remove now non-existent entries from the install target
|
||||
* disable strip when running install
|
||||
|
||||
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
|
||||
---
|
||||
diff -Nuar mxml-2.7-orig/Makefile.in mxml-2.7/Makefile.in
|
||||
--- mxml-2.7-orig/Makefile.in 2011-04-13 18:43:32.000000000 +0300
|
||||
+++ mxml-2.7/Makefile.in 2012-05-16 07:21:42.677220980 +0300
|
||||
@@ -57,7 +57,7 @@
|
||||
# Install commands...
|
||||
#
|
||||
|
||||
-INSTALL_BIN = $(LIBTOOL) $(INSTALL) -m 755 -s
|
||||
+INSTALL_BIN = $(LIBTOOL) $(INSTALL) -m 755
|
||||
INSTALL_DATA = $(INSTALL) -m 644
|
||||
INSTALL_DIR = $(INSTALL) -d
|
||||
INSTALL_LIB = $(LIBTOOL) $(INSTALL) -m 755
|
||||
@@ -88,7 +88,7 @@
|
||||
mxml-index.o mxml-node.o mxml-search.o mxml-set.o
|
||||
LIBOBJS = $(PUBLIBOBJS) mxml-private.o mxml-string.o
|
||||
OBJS = mxmldoc.o testmxml.o $(LIBOBJS)
|
||||
-TARGETS = $(LIBMXML) mxmldoc testmxml mxml.xml doc/mxml.man
|
||||
+TARGETS = $(LIBMXML) libmxml.a
|
||||
|
||||
|
||||
#
|
||||
@@ -140,9 +140,6 @@
|
||||
#
|
||||
|
||||
install: $(TARGETS) install-$(LIBMXML) install-libmxml.a
|
||||
- echo Installing mxmldoc in $(BUILDROOT)$(bindir)...
|
||||
- $(INSTALL_DIR) $(BUILDROOT)$(bindir)
|
||||
- $(INSTALL_BIN) mxmldoc $(BUILDROOT)$(bindir)
|
||||
echo Installing documentation in $(BUILDROOT)$(docdir)...
|
||||
$(INSTALL_DIR) $(BUILDROOT)$(docdir)
|
||||
for file in $(DOCFILES); do \
|
||||
@@ -154,11 +151,6 @@
|
||||
echo Installing pkgconfig files in $(BUILDROOT)$(libdir)/pkgconfig...
|
||||
$(INSTALL_DIR) $(BUILDROOT)$(libdir)/pkgconfig
|
||||
$(INSTALL_DATA) mxml.pc $(BUILDROOT)$(libdir)/pkgconfig
|
||||
- echo Installing man pages in $(BUILDROOT)$(mandir)...
|
||||
- $(INSTALL_DIR) $(BUILDROOT)$(mandir)/man1
|
||||
- $(INSTALL_MAN) doc/mxmldoc.man $(BUILDROOT)$(mandir)/man1/mxmldoc.1
|
||||
- $(INSTALL_DIR) $(BUILDROOT)$(mandir)/man3
|
||||
- $(INSTALL_MAN) doc/mxml.man $(BUILDROOT)$(mandir)/man3/mxml.3
|
||||
|
||||
install-libmxml.a:
|
||||
echo Installing libmxml.a to $(BUILDROOT)$(libdir)...
|
||||
6
deprecated/firmware/buildroot/package/mxml/Config.in
Normal file
6
deprecated/firmware/buildroot/package/mxml/Config.in
Normal file
@@ -0,0 +1,6 @@
|
||||
config BR2_PACKAGE_MXML
|
||||
bool "Mini-XML"
|
||||
help
|
||||
Lightweight XML Library
|
||||
|
||||
http://www.minixml.org
|
||||
4
deprecated/firmware/buildroot/package/mxml/mxml.hash
Normal file
4
deprecated/firmware/buildroot/package/mxml/mxml.hash
Normal file
@@ -0,0 +1,4 @@
|
||||
# From http://www.msweet.org/downloads.php?L+Z3
|
||||
md5 e21cad0f7aacd18f942aa0568a8dee19 mxml-2.9.tar.gz
|
||||
# Locally computed
|
||||
sha256 cded54653c584b24c4a78a7fa1b3b4377d49ac4f451ddf170ebbc8161d85ff92 mxml-2.9.tar.gz
|
||||
16
deprecated/firmware/buildroot/package/mxml/mxml.mk
Normal file
16
deprecated/firmware/buildroot/package/mxml/mxml.mk
Normal file
@@ -0,0 +1,16 @@
|
||||
################################################################################
|
||||
#
|
||||
# mxml
|
||||
#
|
||||
################################################################################
|
||||
|
||||
MXML_VERSION = 2.9
|
||||
MXML_SITE = http://www.msweet.org/files/project3
|
||||
MXML_LICENSE = LGPLv2+ with exceptions
|
||||
MXML_LICENSE_FILES = COPYING
|
||||
MXML_INSTALL_STAGING = YES
|
||||
|
||||
MXML_INSTALL_STAGING_OPTS = DSTROOT=$(STAGING_DIR) install
|
||||
MXML_INSTALL_TARGET_OPTS = DSTROOT=$(TARGET_DIR) install
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user