aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Karatarakis <alex@karatarakis.com>2016-11-30 12:35:03 -0800
committerGitHub <noreply@github.com>2016-11-30 12:35:03 -0800
commit760ae1c3ce69fed82b41b8c0951567d1a4da6a3e (patch)
tree39681fae404c3353a8e672c9a7949eb0f171408e
parent61e484a640884bc33ae3754f98006ebb1b4c1f1f (diff)
parentf357b18b0173c45678d773c43083fd31c4763a6e (diff)
downloadvcpkg-760ae1c3ce69fed82b41b8c0951567d1a4da6a3e.tar.gz
vcpkg-760ae1c3ce69fed82b41b8c0951567d1a4da6a3e.zip
Merge pull request #375 from Wakusei/port-yamlcpp
Added yaml-cpp
-rw-r--r--ports/yaml-cpp/CONTROL3
-rw-r--r--ports/yaml-cpp/portfile.cmake38
2 files changed, 41 insertions, 0 deletions
diff --git a/ports/yaml-cpp/CONTROL b/ports/yaml-cpp/CONTROL
new file mode 100644
index 000000000..f55ccfc4f
--- /dev/null
+++ b/ports/yaml-cpp/CONTROL
@@ -0,0 +1,3 @@
+Source: yaml-cpp
+Version: 0.5.4 candidate
+Description: yaml-cpp is a YAML parser and emitter in C++ matching the YAML 1.2 spec.
diff --git a/ports/yaml-cpp/portfile.cmake b/ports/yaml-cpp/portfile.cmake
new file mode 100644
index 000000000..69f838884
--- /dev/null
+++ b/ports/yaml-cpp/portfile.cmake
@@ -0,0 +1,38 @@
+# Common Ambient Variables:
+# VCPKG_ROOT_DIR = <C:\path\to\current\vcpkg>
+# TARGET_TRIPLET is the current triplet (x86-windows, etc)
+# PORT is the current port name (zlib, etc)
+# CURRENT_BUILDTREES_DIR = ${VCPKG_ROOT_DIR}\buildtrees\${PORT}
+# CURRENT_PACKAGES_DIR = ${VCPKG_ROOT_DIR}\packages\${PORT}_${TARGET_TRIPLET}
+#
+
+include(vcpkg_common_functions)
+set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/yaml-cpp-380ecb404ef99ba132154ed43dd2b84136b30b14)
+vcpkg_download_distfile(ARCHIVE
+ URLS "https://github.com/jbeder/yaml-cpp/archive/380ecb404ef99ba132154ed43dd2b84136b30b14.zip"
+ FILENAME "380ecb404ef99ba132154ed43dd2b84136b30b14.zip"
+ SHA512 7e090b53ba760f4f9a44701359fe2c30c05f1bbcd2cba78a8f9a88c651b09be6d592e65826fbacb9dd7317afbe3cd968be531b89f83e79f15cd97e9c27d17232
+)
+vcpkg_extract_source_archive(${ARCHIVE})
+
+vcpkg_configure_cmake(
+ SOURCE_PATH ${SOURCE_PATH}
+ # OPTIONS -DUSE_THIS_IN_ALL_BUILDS=1 -DUSE_THIS_TOO=2
+ # OPTIONS_RELEASE -DOPTIMIZE=1
+ # OPTIONS_DEBUG -DDEBUGGABLE=1
+)
+
+vcpkg_install_cmake()
+
+vcpkg_copy_pdbs()
+
+# Remove debug include files
+file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
+# Remove cmake files
+file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/CMake)
+file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/CMake)
+
+# Handle copyright
+file(COPY ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/yaml-cpp)
+file(RENAME ${CURRENT_PACKAGES_DIR}/share/yaml-cpp/LICENSE ${CURRENT_PACKAGES_DIR}/share/yaml-cpp/copyright)
+