aboutsummaryrefslogtreecommitdiff
path: root/ports
diff options
context:
space:
mode:
authorRyan <ryan__mckenzie@hotmail.com>2021-09-27 20:03:44 -0700
committerGitHub <noreply@github.com>2021-09-27 20:03:44 -0700
commit46e314d63a0cd712f72c2220478933fb35857351 (patch)
tree7117325fc1d3bd60c24ea0e69ef9be6c2bd07894 /ports
parent073a476459c5a311c793e01064e02d1af230b890 (diff)
downloadvcpkg-46e314d63a0cd712f72c2220478933fb35857351.tar.gz
vcpkg-46e314d63a0cd712f72c2220478933fb35857351.zip
[rsm-mmio] Add new port (#20336)
* add port rsm-mmio * add versioning * convert indentation to spaces * update versioning
Diffstat (limited to 'ports')
-rw-r--r--ports/rsm-mmio/portfile.cmake24
-rw-r--r--ports/rsm-mmio/vcpkg.json17
2 files changed, 41 insertions, 0 deletions
diff --git a/ports/rsm-mmio/portfile.cmake b/ports/rsm-mmio/portfile.cmake
new file mode 100644
index 000000000..12cf65000
--- /dev/null
+++ b/ports/rsm-mmio/portfile.cmake
@@ -0,0 +1,24 @@
+vcpkg_fail_port_install(ON_TARGET "OSX" "UWP")
+vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO Ryan-rsm-McKenzie/mmio
+ REF 1.1.0
+ SHA512 54c63c345d9e0a284d13078d525fcbe73d793462968121fee89a19c810cdac736aca9c81f4c8b4f5ea51db1c47ad0c55e7cea38772049e4939b0d6e280f9a332
+ HEAD_REF main
+)
+
+vcpkg_cmake_configure(
+ SOURCE_PATH "${SOURCE_PATH}"
+ OPTIONS
+ -DBUILD_TESTING=OFF
+)
+vcpkg_cmake_install()
+vcpkg_cmake_config_fixup(CONFIG_PATH "lib/cmake/mmio")
+
+file(REMOVE_RECURSE
+ "${CURRENT_PACKAGES_DIR}/debug/include"
+ "${CURRENT_PACKAGES_DIR}/debug/share"
+)
+
+file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
diff --git a/ports/rsm-mmio/vcpkg.json b/ports/rsm-mmio/vcpkg.json
new file mode 100644
index 000000000..7115a226f
--- /dev/null
+++ b/ports/rsm-mmio/vcpkg.json
@@ -0,0 +1,17 @@
+{
+ "name": "rsm-mmio",
+ "version-semver": "1.1.0",
+ "description": "A cross-platform memory-mapped io library for C++ ",
+ "homepage": "https://github.com/Ryan-rsm-McKenzie/mmio",
+ "supports": "!osx & !uwp",
+ "dependencies": [
+ {
+ "name": "vcpkg-cmake",
+ "host": true
+ },
+ {
+ "name": "vcpkg-cmake-config",
+ "host": true
+ }
+ ]
+}