aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ports/nngpp/CONTROL6
-rw-r--r--ports/nngpp/portfile.cmake30
2 files changed, 36 insertions, 0 deletions
diff --git a/ports/nngpp/CONTROL b/ports/nngpp/CONTROL
new file mode 100644
index 000000000..7cc9d7afe
--- /dev/null
+++ b/ports/nngpp/CONTROL
@@ -0,0 +1,6 @@
+Source: nngpp
+Version: 2019-07-25
+Homepage:https://github.com/cwzx/nngpp
+Description: C++ wrapper around the nanomsg NNG API.
+Build-Depends: nng
+
diff --git a/ports/nngpp/portfile.cmake b/ports/nngpp/portfile.cmake
new file mode 100644
index 000000000..18646951c
--- /dev/null
+++ b/ports/nngpp/portfile.cmake
@@ -0,0 +1,30 @@
+include(vcpkg_common_functions)
+
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO cwzx/nngpp
+ REF 3351f54e6e774505d8d8b88064d04eb98e0b1cda
+ SHA512 6f72d1085b58ee7a8941294e7479661d8fc2c22cc8af2cee9c2cef11d508032a860c0061851bda07cf995ec8f57e5a25e241a15114a91c487d8aad6def2d4ce5
+ HEAD_REF master
+)
+
+vcpkg_configure_cmake(
+ SOURCE_PATH ${SOURCE_PATH}
+ PREFER_NINJA
+ OPTIONS
+ -DNNGPP_BUILD_DEMOS=OFF
+ -DNNGPP_BUILD_TESTS=OFF
+)
+
+vcpkg_install_cmake()
+
+# Move CMake config files to the right place
+vcpkg_fixup_cmake_targets(CONFIG_PATH lib/cmake/${PORT})
+
+file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug)
+file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/lib)
+
+# Handle copyright
+file(COPY ${SOURCE_PATH}/license.txt DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT})
+file(RENAME ${CURRENT_PACKAGES_DIR}/share/${PORT}/license.txt ${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright)
+