aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-02-17 17:46:34 -0800
committerAlexander Karatarakis <alkarata@microsoft.com>2017-02-17 17:46:34 -0800
commit7ae6c2152686467ab81663e6d7d259f475c0229d (patch)
tree5ba3420a6ff992b03b3a4e1db3709bc59b5757ce
parent536e18c7cffe7394099ab48160a0dc2619a5e24f (diff)
downloadvcpkg-7ae6c2152686467ab81663e6d7d259f475c0229d.tar.gz
vcpkg-7ae6c2152686467ab81663e6d7d259f475c0229d.zip
[clockutils] Update to fix build issue. Resolves #677
-rw-r--r--ports/clockutils/CONTROL2
-rw-r--r--ports/clockutils/portfile.cmake9
2 files changed, 6 insertions, 5 deletions
diff --git a/ports/clockutils/CONTROL b/ports/clockutils/CONTROL
index 4ade8d5f0..8f88e71ec 100644
--- a/ports/clockutils/CONTROL
+++ b/ports/clockutils/CONTROL
@@ -1,3 +1,3 @@
Source: clockutils
-Version: 1.1.1
+Version: 1.1.1-3651f232c27074c4ceead169e223edf5f00247c5
Description: A lightweight c++ library for commonly needed tasks. Optimized for simplicity and speed.
diff --git a/ports/clockutils/portfile.cmake b/ports/clockutils/portfile.cmake
index 2c75495d9..33f0b1f83 100644
--- a/ports/clockutils/portfile.cmake
+++ b/ports/clockutils/portfile.cmake
@@ -1,9 +1,10 @@
include(vcpkg_common_functions)
-set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/clockUtils-1.1.1)
+set(VERSION 3651f232c27074c4ceead169e223edf5f00247c5)
+set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/clockUtils-${VERSION})
vcpkg_download_distfile(ARCHIVE
- URLS "https://github.com/ClockworkOrigins/clockUtils/archive/1.1.1.tar.gz"
- FILENAME "clockUtils-1.1.1.tar.gz"
- SHA512 6b0c57862baf04c0c5529549ba13983e53445172d9a272571aa20968ba6dba15f1cf480096ca100d450218fef090805366d0564c77a4aa4721a4fe694a0481c9
+ URLS "https://github.com/ClockworkOrigins/clockUtils/archive/${VERSION}.tar.gz"
+ FILENAME "clockUtils-${VERSION}.tar.gz"
+ SHA512 ddb70cae9ced25de77a2df1854dac15e58a77347042ba3ee9c691f85f49edbc6539c84929a7477d429fb9161ba24c57d24d767793b8b1180216d5ddfc5d3ed6a
)
vcpkg_extract_source_archive(${ARCHIVE})