aboutsummaryrefslogtreecommitdiff
path: root/ports/cppwinrt
diff options
context:
space:
mode:
authorRobert Schumacher <roschuma@microsoft.com>2017-10-23 11:43:36 -0700
committerRobert Schumacher <roschuma@microsoft.com>2017-10-23 11:43:36 -0700
commit7f0dcbc15dbf8e0cb202f8a197f5582c36b4b546 (patch)
treedbac3d9d6fcd0438e87157e0f47960c4ce546023 /ports/cppwinrt
parent7913033b00d3067e0e8f24087737d89d177ff056 (diff)
downloadvcpkg-7f0dcbc15dbf8e0cb202f8a197f5582c36b4b546.tar.gz
vcpkg-7f0dcbc15dbf8e0cb202f8a197f5582c36b4b546.zip
[cppwinrt] Use vcpkg_from_github
Diffstat (limited to 'ports/cppwinrt')
-rw-r--r--ports/cppwinrt/CONTROL2
-rw-r--r--ports/cppwinrt/portfile.cmake13
2 files changed, 7 insertions, 8 deletions
diff --git a/ports/cppwinrt/CONTROL b/ports/cppwinrt/CONTROL
index 89c6133bd..4f160a6e0 100644
--- a/ports/cppwinrt/CONTROL
+++ b/ports/cppwinrt/CONTROL
@@ -1,3 +1,3 @@
Source: cppwinrt
-Version: fall_2017_creators_update_for_vs_15.3
+Version: fall_2017_creators_update_for_vs_15.3-1
Description: C++/WinRT is a standard C++ language projection for the Windows Runtime.
diff --git a/ports/cppwinrt/portfile.cmake b/ports/cppwinrt/portfile.cmake
index 98a483ad2..703f9b6a1 100644
--- a/ports/cppwinrt/portfile.cmake
+++ b/ports/cppwinrt/portfile.cmake
@@ -1,13 +1,12 @@
include(vcpkg_common_functions)
-find_program(GIT git)
-set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/cppwinrt-fall_2017_creators_update_for_vs_15.3)
-vcpkg_download_distfile(ARCHIVE
- URLS "https://github.com/Microsoft/cppwinrt/archive/fall_2017_creators_update_for_vs_15.3.tar.gz"
- FILENAME "fall_2017_creators_update_for_vs_15.3.tar.gz"
- SHA512 e3f987ed3f3dce019b8bf9f5451e53b42357473a003b8c14f9009e1848ee0463286bd46fdc3c739c8f7c2d232707e8018f5c087ffae784c745d51a8143f9a294
+vcpkg_from_github(
+ OUT_SOURCE_PATH SOURCE_PATH
+ REPO Microsoft/cppwinrt
+ REF fall_2017_creators_update_for_vs_15.3
+ SHA512 e3f987ed3f3dce019b8bf9f5451e53b42357473a003b8c14f9009e1848ee0463286bd46fdc3c739c8f7c2d232707e8018f5c087ffae784c745d51a8143f9a294
+ HEAD_REF master
)
-vcpkg_extract_source_archive(${ARCHIVE})
# Put the licence file where vcpkg expects it
file(COPY ${SOURCE_PATH}/license DESTINATION ${CURRENT_PACKAGES_DIR}/share/cppwinrt/license.txt)