diff options
| author | Ryan <ryan__mckenzie@hotmail.com> | 2021-09-27 20:03:20 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-27 20:03:20 -0700 |
| commit | 073a476459c5a311c793e01064e02d1af230b890 (patch) | |
| tree | 241ed07023a732ec359f4d3e53b51131a514d66d /ports/rsm-binary-io | |
| parent | 1ecff29caff630fc51e30202c7078eddaff5fd09 (diff) | |
| download | vcpkg-073a476459c5a311c793e01064e02d1af230b890.tar.gz vcpkg-073a476459c5a311c793e01064e02d1af230b890.zip | |
[rsm-binary-io] Add new port (#20334)
* add rsm-binary-io port
* add versioning
* add rsm-binary-io x64-linux to ci baseline
* convert indentation to spaces
* update versioning
Diffstat (limited to 'ports/rsm-binary-io')
| -rw-r--r-- | ports/rsm-binary-io/portfile.cmake | 31 | ||||
| -rw-r--r-- | ports/rsm-binary-io/vcpkg.json | 18 |
2 files changed, 49 insertions, 0 deletions
diff --git a/ports/rsm-binary-io/portfile.cmake b/ports/rsm-binary-io/portfile.cmake new file mode 100644 index 000000000..a8210e426 --- /dev/null +++ b/ports/rsm-binary-io/portfile.cmake @@ -0,0 +1,31 @@ +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/binary_io
+ REF 2.0.2
+ SHA512 4b7e725d9143d37481b4a7e4e101c88c3b73628dd2882fa23ef10a602f8a6ca79de111138237d4dd6fc09d1df863b91a949782961f5623fcac1e324b2e301121
+ HEAD_REF main
+)
+
+if(VCPKG_TARGET_IS_LINUX)
+ message(WARNING "Build ${PORT} requires at least gcc 10.")
+endif()
+
+vcpkg_cmake_configure(
+ SOURCE_PATH "${SOURCE_PATH}"
+ OPTIONS
+ -DBUILD_TESTING=OFF
+)
+vcpkg_cmake_install()
+vcpkg_cmake_config_fixup(
+ PACKAGE_NAME binary_io
+ CONFIG_PATH "lib/cmake/binary_io"
+)
+
+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-binary-io/vcpkg.json b/ports/rsm-binary-io/vcpkg.json new file mode 100644 index 000000000..3d76fc8d3 --- /dev/null +++ b/ports/rsm-binary-io/vcpkg.json @@ -0,0 +1,18 @@ +{ + "name": "rsm-binary-io", + "version-semver": "2.0.2", + "description": "A binary i/o library for C++, without the agonizing pain", + "homepage": "https://github.com/Ryan-rsm-McKenzie/binary_io", + "documentation": "https://ryan-rsm-mckenzie.github.io/binary_io/", + "supports": "!osx & !uwp", + "dependencies": [ + { + "name": "vcpkg-cmake", + "host": true + }, + { + "name": "vcpkg-cmake-config", + "host": true + } + ] +} |
