diff options
| author | Billy O'Neal <bion@microsoft.com> | 2020-05-26 20:59:38 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-26 20:59:38 -0700 |
| commit | cb538ed22fabe3ef7b9847d6d2b6d85f0d185ec3 (patch) | |
| tree | a7c22f2d587a7e97471b24309d31928ea6a2ccb1 | |
| parent | a5758c97d0481505436d43cd40af235098c8d481 (diff) | |
| download | vcpkg-cb538ed22fabe3ef7b9847d6d2b6d85f0d185ec3.tar.gz vcpkg-cb538ed22fabe3ef7b9847d6d2b6d85f0d185ec3.zip | |
[magic-get] Fix improper direct reference to the "downloads" directory which fails when the downloads directory has been relocated. (#11581)
| -rw-r--r-- | ports/magic-get/CONTROL | 4 | ||||
| -rw-r--r-- | ports/magic-get/portfile.cmake | 10 |
2 files changed, 6 insertions, 8 deletions
diff --git a/ports/magic-get/CONTROL b/ports/magic-get/CONTROL index c59f8b85c..c614761f5 100644 --- a/ports/magic-get/CONTROL +++ b/ports/magic-get/CONTROL @@ -1,4 +1,4 @@ Source: magic-get
-Version: 2019-09-02
+Version: 2019-09-02-1
Homepage: https://github.com/apolukhin/magic_get
-Description: This C++14 library is meant for accessing structure elements by index and providing other std::tuple like methods for user defined types without any macro or boilerplate code.
\ No newline at end of file +Description: This C++14 library is meant for accessing structure elements by index and providing other std::tuple like methods for user defined types without any macro or boilerplate code.
diff --git a/ports/magic-get/portfile.cmake b/ports/magic-get/portfile.cmake index f66b4310c..1546bbe99 100644 --- a/ports/magic-get/portfile.cmake +++ b/ports/magic-get/portfile.cmake @@ -1,9 +1,7 @@ -include(vcpkg_common_functions) - vcpkg_from_github( OUT_SOURCE_PATH SOURCE_PATH REPO apolukhin/magic_get - REF abb467c0e22a83bf75a46a9e6610370fabfc39af #Branch develop, Commits on Sep 2, 2019 + REF abb467c0e22a83bf75a46a9e6610370fabfc39af #Branch develop, Commits on Sep 2, 2019 SHA512 1feb5d105d13a20aec8ab2c748dbd79ecc5d2267c8c0ee7db93a3d0c6b7186ea0c475fdc14712e78502ea839788f6dfb0b359e3fedbec59d331dafe137326fa4 HEAD_REF develop ) @@ -13,9 +11,9 @@ vcpkg_download_distfile(OCV_DOWNLOAD FILENAME "boost_license_1_0.txt" SHA512 d6078467835dba8932314c1c1e945569a64b065474d7aced27c9a7acc391d52e9f234138ed9f1aa9cd576f25f12f557e0b733c14891d42c16ecdc4a7bd4d60b8 ) - -file(COPY ${SOURCE_PATH}/include DESTINATION ${CURRENT_PACKAGES_DIR}) + +file(COPY ${SOURCE_PATH}/include DESTINATION ${CURRENT_PACKAGES_DIR}) # Handle copyright # On Homepage README.md, License Distributed under the Boost Software License, Version 1.0. https://www.boost.org/LICENSE_1_0.txt -file(INSTALL ${VCPKG_ROOT_DIR}/downloads/boost_license_1_0.txt DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)
\ No newline at end of file +file(INSTALL ${OCV_DOWNLOAD} DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright) |
