aboutsummaryrefslogtreecommitdiff
path: root/ports/ebml
diff options
context:
space:
mode:
authorkiwixz <kiwixz@outlook.com>2019-04-07 06:56:04 +0100
committerPhil Christensen <philc@microsoft.com>2019-04-06 22:56:04 -0700
commit9a4f3c19823ed9bf6b8f08b1c5575caf6afb1002 (patch)
treece872218f65d701644f53a37d24b4609e950956d /ports/ebml
parentbc907b64ee5ccd8e5391c38d8badf076a6b977bb (diff)
downloadvcpkg-9a4f3c19823ed9bf6b8f08b1c5575caf6afb1002.tar.gz
vcpkg-9a4f3c19823ed9bf6b8f08b1c5575caf6afb1002.zip
[ebml,matroska] update ebml to 1.3.7, fix installation on linux (#5981)
* [ebml] fix installation on linux * [ebml] update to 1.3.7 * [ebml] fix config installation on linux * [matroska] cleanup, fix linux compilation
Diffstat (limited to 'ports/ebml')
-rw-r--r--ports/ebml/CONTROL2
-rw-r--r--ports/ebml/portfile.cmake11
2 files changed, 8 insertions, 5 deletions
diff --git a/ports/ebml/CONTROL b/ports/ebml/CONTROL
index 1b3ec442a..ee257603f 100644
--- a/ports/ebml/CONTROL
+++ b/ports/ebml/CONTROL
@@ -1,3 +1,3 @@
Source: ebml
-Version: 1.3.6-1
+Version: 1.3.7
Description: a C++ libary to parse EBML files
diff --git a/ports/ebml/portfile.cmake b/ports/ebml/portfile.cmake
index 573801fb6..3eb8d642d 100644
--- a/ports/ebml/portfile.cmake
+++ b/ports/ebml/portfile.cmake
@@ -4,12 +4,11 @@ if(VCPKG_CMAKE_SYSTEM_NAME STREQUAL "WindowsStore")
message(FATAL_ERROR "${PORT} does not currently support UWP")
endif()
-
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO Matroska-Org/libebml
- REF release-1.3.6
- SHA512 249ff2e9b381d827311eaec910962685243a3b65335c7bd404a35e11cd204c63bc7ea69787f0e27ea9c9144024e45867fd4ae7d30688a3695cd45fee1ce89ec9
+ REF release-1.3.7
+ SHA512 754dee128db2eb6f0ba09962312ddda79f3178238464dd6161cce50bd08fd4193490a48bb537c4e2a388dc339951909a8857617cb30500d76d5689da4f855b47
HEAD_REF master
PATCHES export-endofstreamx.patch
)
@@ -22,7 +21,11 @@ vcpkg_configure_cmake(
vcpkg_install_cmake()
-vcpkg_fixup_cmake_targets(CONFIG_PATH cmake)
+if (WIN32)
+ vcpkg_fixup_cmake_targets(CONFIG_PATH cmake)
+else ()
+ vcpkg_fixup_cmake_targets(CONFIG_PATH lib/cmake/ebml)
+endif ()
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)