aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2016-11-16 12:48:52 -0800
committerAlexander Karatarakis <alkarata@microsoft.com>2016-11-16 12:48:52 -0800
commita451768429d560cf42a98cc4d03feccf4329ea96 (patch)
tree4603be0c4f3be24834dcc6a204b63ddde0e0a521
parentbdfdf2548ae7bbdc9dd85ca3b75f4e7433b99a9a (diff)
parenta0308feeb906e216d3a568f09ce889cfe60e9244 (diff)
downloadvcpkg-a451768429d560cf42a98cc4d03feccf4329ea96.tar.gz
vcpkg-a451768429d560cf42a98cc4d03feccf4329ea96.zip
Merge branch 'jsoncpp' of https://github.com/drdanz/vcpkg into drdanz-jsoncpp
-rw-r--r--ports/jsoncpp/CONTROL3
-rw-r--r--ports/jsoncpp/portfile.cmake41
2 files changed, 44 insertions, 0 deletions
diff --git a/ports/jsoncpp/CONTROL b/ports/jsoncpp/CONTROL
new file mode 100644
index 000000000..d4ac63bd3
--- /dev/null
+++ b/ports/jsoncpp/CONTROL
@@ -0,0 +1,3 @@
+Source: jsoncpp
+Version: 1.7.7
+Description: jsoncpp is an implementation of a JSON reader and writer in C++. JSON (JavaScript Object Notation) is a lightweight data-interchange format that it is easy to parse and redeable for human.
diff --git a/ports/jsoncpp/portfile.cmake b/ports/jsoncpp/portfile.cmake
new file mode 100644
index 000000000..68dfcc42a
--- /dev/null
+++ b/ports/jsoncpp/portfile.cmake
@@ -0,0 +1,41 @@
+include(vcpkg_common_functions)
+set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/jsoncpp-1.7.7)
+vcpkg_download_distfile(ARCHIVE
+ URLS "https://github.com/open-source-parsers/jsoncpp/archive/1.7.7.zip"
+ FILENAME "jsoncpp-1.7.7.zip"
+ SHA512 3801faab0b1982bc41dac3049e0f7d24ea3dc759b77afc1ca7365b95a36460f87a74a0f5c6efd4c4a315ea2ca904b38f454b0a70133cda339c4a01ae8049cecb
+)
+vcpkg_extract_source_archive(${ARCHIVE})
+
+vcpkg_configure_cmake(
+ SOURCE_PATH ${SOURCE_PATH}
+ OPTIONS -DJSONCPP_WITH_CMAKE_PACKAGE:BOOL=ON
+ -DBUILD_STATIC_LIBS:BOOL=OFF
+ -DBUILD_SHARED_LIBS:BOOL=ON
+)
+
+vcpkg_install_cmake()
+
+# Fix CMake files
+file(MAKE_DIRECTORY ${CURRENT_PACKAGES_DIR}/share)
+file(RENAME ${CURRENT_PACKAGES_DIR}/lib/cmake/jsoncpp ${CURRENT_PACKAGES_DIR}/share/jsoncpp)
+file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/lib/cmake)
+file(READ ${CURRENT_PACKAGES_DIR}/share/jsoncpp/jsoncppConfig.cmake _contents)
+string(REPLACE "get_filename_component(_IMPORT_PREFIX \"\${_IMPORT_PREFIX}\" PATH)\n\n" "\n" _contents "${_contents}")
+file(WRITE ${CURRENT_PACKAGES_DIR}/share/jsoncpp/jsoncppConfig.cmake ${_contents})
+
+file(READ ${CURRENT_PACKAGES_DIR}/debug/lib/cmake/jsoncpp/jsoncppConfig-debug.cmake _contents)
+string(REPLACE "\${_IMPORT_PREFIX}" "\${_IMPORT_PREFIX}/debug" _contents "${_contents}")
+file(WRITE ${CURRENT_PACKAGES_DIR}/share/jsoncpp/jsoncppConfig-debug.cmake "${_contents}")
+
+# Remove useless files in debug
+file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
+file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/lib/cmake)
+file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/lib/pkgconfig)
+
+# Handle copyright
+file(COPY ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/jsoncpp)
+file(RENAME ${CURRENT_PACKAGES_DIR}/share/jsoncpp/LICENSE ${CURRENT_PACKAGES_DIR}/share/jsoncpp/copyright)
+
+# Copy pdb files
+vcpkg_copy_pdbs()