diff options
| author | zhouqi <zhouqi.whu@hotmail.com> | 2018-12-05 16:52:09 +0800 |
|---|---|---|
| committer | zhouqi <zhouqi.whu@hotmail.com> | 2018-12-05 16:52:09 +0800 |
| commit | 642e37b3c9f14d5f822239b630933d8eed7e8b70 (patch) | |
| tree | d03a40e71ccfb15fe76f2f5c7b3500f5e20478e1 | |
| parent | bed365bfae208241f2a69f6fba89145ab710051a (diff) | |
| download | vcpkg-642e37b3c9f14d5f822239b630933d8eed7e8b70.tar.gz vcpkg-642e37b3c9f14d5f822239b630933d8eed7e8b70.zip | |
rxqt port
| -rw-r--r-- | ports/rxqt/CONTROL | 4 | ||||
| -rw-r--r-- | ports/rxqt/portfile.cmake | 20 |
2 files changed, 24 insertions, 0 deletions
diff --git a/ports/rxqt/CONTROL b/ports/rxqt/CONTROL new file mode 100644 index 000000000..a99d58aa5 --- /dev/null +++ b/ports/rxqt/CONTROL @@ -0,0 +1,4 @@ +Source: rxqt
+Version:
+Description: The Reactive Extensions for Qt. <https://github.com/tetsurom/rxqt>
+Build-Depends: rxcpp
\ No newline at end of file diff --git a/ports/rxqt/portfile.cmake b/ports/rxqt/portfile.cmake new file mode 100644 index 000000000..8531af15b --- /dev/null +++ b/ports/rxqt/portfile.cmake @@ -0,0 +1,20 @@ +#header-only library
+
+include(vcpkg_common_functions)
+
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO tetsurom/rxqt
+ REF master
+ SHA512 3f25570ab98c8d3959c35b0d99d5c35486339aa8cd752d8140bb064239265ecb8c5002e3a5e2b46324bb79b558cfe0f17e23a59ad51e6d3a0764acdce493b12c
+ HEAD_REF master
+)
+
+file(INSTALL
+ ${SOURCE_PATH}/include
+ DESTINATION ${CURRENT_PACKAGES_DIR}
+)
+
+file(INSTALL
+ ${SOURCE_PATH}/LICENSE
+ DESTINATION ${CURRENT_PACKAGES_DIR}/share/rxqt RENAME copyright)
\ No newline at end of file |
