aboutsummaryrefslogtreecommitdiff
path: root/ports/constexpr
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2016-09-26 13:58:27 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2016-09-26 13:58:27 -0700
commit3b8c147148a19b542b739ec19a289fb92498245e (patch)
tree5ccb9a6ad2629a65d221483dd101e76ad53ed10d /ports/constexpr
parent095fcad37b7653061ab6c4639e922411806e785d (diff)
parent9d5f46ed5b18b404704260e7b49d8cc80c3a6e13 (diff)
downloadvcpkg-3b8c147148a19b542b739ec19a289fb92498245e.tar.gz
vcpkg-3b8c147148a19b542b739ec19a289fb92498245e.zip
Merge branch 'Add-constexpr' of https://github.com/playmer/vcpkg into playmer-Add-constexpr
Diffstat (limited to 'ports/constexpr')
-rw-r--r--ports/constexpr/CONTROL3
-rw-r--r--ports/constexpr/portfile.cmake16
2 files changed, 19 insertions, 0 deletions
diff --git a/ports/constexpr/CONTROL b/ports/constexpr/CONTROL
new file mode 100644
index 000000000..e8cb4749f
--- /dev/null
+++ b/ports/constexpr/CONTROL
@@ -0,0 +1,3 @@
+Source: constexpr
+Version: 1.0
+Description: Small MIT License Library of general stdlib functions written as C++11 constexpr functions.
diff --git a/ports/constexpr/portfile.cmake b/ports/constexpr/portfile.cmake
new file mode 100644
index 000000000..47df30d12
--- /dev/null
+++ b/ports/constexpr/portfile.cmake
@@ -0,0 +1,16 @@
+include(vcpkg_common_functions)
+vcpkg_download_distfile(ARCHIVE
+ URL "https://github.com/elbeno/constexpr/archive/a98b1db39c909e0130d21d3910d4faf97035a625.zip"
+ FILENAME "constexpr-a98b1db39c909e0130d21d3910d4faf97035a625.zip"
+ SHA512 847e09f9df30cb5fbd8aa280679ff359d73c9e9454ffe3090f66975a15665080629e9a664d057f039b17430d42b5e5f5f3f92831e73c15024060991090209c2e
+)
+vcpkg_extract_source_archive(${ARCHIVE})
+
+# Put the licence file where vcpkg expects it
+set(SOURCE_DIR ${CURRENT_BUILDTREES_DIR}/src/constexpr-a98b1db39c909e0130d21d3910d4faf97035a625)
+file(COPY ${SOURCE_DIR}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/constexpr/LICENSE)
+file(RENAME ${CURRENT_PACKAGES_DIR}/share/constexpr/LICENSE ${CURRENT_PACKAGES_DIR}/share/constexpr/copyright)
+
+# Copy the constexpr header files
+file(GLOB HEADER_FILES ${SOURCE_DIR}/src/include/*.h)
+file(COPY ${HEADER_FILES} DESTINATION ${CURRENT_PACKAGES_DIR}/include)