Added RapidXml

This commit is contained in:
Ninetainedo 2016-09-21 01:46:35 +02:00
parent 6c9b62eea3
commit 663f915807
2 changed files with 17 additions and 0 deletions

3
ports/rapidxml/CONTROL Normal file
View File

@ -0,0 +1,3 @@
Source: rapidxml
Version: 1.13
Description: RapidXml is an attempt to create the fastest XML parser possible, while retaining useability, portability and reasonable W3C compatibility.

View File

@ -0,0 +1,14 @@
include(vcpkg_common_functions)
vcpkg_download_distfile(ARCHIVE
URL "https://sourceforge.net/projects/rapidxml/files/rapidxml/rapidxml%201.13/rapidxml-1.13.zip/download"
FILENAME "rapidxml-1.13.zip"
MD5 7b4b42c9331c90aded23bb55dc725d6a
)
vcpkg_extract_source_archive(${ARCHIVE})
# Handle copyright
file(COPY ${CURRENT_BUILDTREES_DIR}/src/rapidxml-1.13/license.txt DESTINATION ${CURRENT_PACKAGES_DIR}/share/rapidxml)
file(RENAME ${CURRENT_PACKAGES_DIR}/share/rapidxml/license.txt ${CURRENT_PACKAGES_DIR}/share/rapidxml/copyright)
# Copy the header files
file(INSTALL ${CURRENT_BUILDTREES_DIR}/src/rapidxml-1.13/ DESTINATION ${CURRENT_PACKAGES_DIR}/include FILES_MATCHING PATTERN "*.hpp")