Move all to deprecated folder.

This commit is contained in:
2016-11-16 21:57:57 +01:00
parent 01738a7684
commit 05de7d6c04
9777 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
config BR2_PACKAGE_RAPIDXML
bool "rapidxml"
help
RapidXml is an attempt to create the fastest XML parser
possible, while retaining useability, portability and
reasonable W3C compatibility. It is an in-situ parser with
parsing speed approaching speed of strlen function executed
on the same data.
http://sourceforge.net/projects/rapidxml/
https://en.wikipedia.org/wiki/RapidXml

View File

@@ -0,0 +1,6 @@
# From https://sourceforge.net/projects/rapidxml/files/rapidxml/rapidxml%201.13/
sha1 f5fd4fbc5ad7e96045313697811d65ea8089a950 rapidxml-1.13.zip
md5 7b4b42c9331c90aded23bb55dc725d6a rapidxml-1.13.zip
# Locally calculated
sha256 c3f0b886374981bb20fabcf323d755db4be6dba42064599481da64a85f5b3571 rapidxml-1.13.zip

View File

@@ -0,0 +1,27 @@
################################################################################
#
# rapidxml
#
################################################################################
RAPIDXML_VERSION = 1.13
RAPIDXML_SOURCE = rapidxml-$(RAPIDXML_VERSION).zip
RAPIDXML_SITE = http://downloads.sourceforge.net/project/rapidxml/rapidxml/rapidxml%20$(RAPIDXML_VERSION)
RAPIDXML_LICENSE = Boost Software License 1.0 or MIT
RAPIDXML_LICENSE_FILES = license.txt
# C++ headers only
RAPIDXML_INSTALL_TARGET = NO
RAPIDXML_INSTALL_STAGING = YES
define RAPIDXML_EXTRACT_CMDS
$(UNZIP) -d $(@D) $(DL_DIR)/$(RAPIDXML_SOURCE)
mv $(@D)/rapidxml-$(RAPIDXML_VERSION)/* $(@D)/
rmdir $(@D)/rapidxml-$(RAPIDXML_VERSION)
endef
define RAPIDXML_INSTALL_STAGING_CMDS
cp -dpfr $(@D)/*hpp $(STAGING_DIR)/usr/include
endef
$(eval $(generic-package))