aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/live555/portfile.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'vcpkg/ports/live555/portfile.cmake')
-rw-r--r--vcpkg/ports/live555/portfile.cmake37
1 files changed, 37 insertions, 0 deletions
diff --git a/vcpkg/ports/live555/portfile.cmake b/vcpkg/ports/live555/portfile.cmake
new file mode 100644
index 0000000..b1cc11b
--- /dev/null
+++ b/vcpkg/ports/live555/portfile.cmake
@@ -0,0 +1,37 @@
+vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
+
+string(REPLACE "-" "." format_version ${VERSION})
+vcpkg_download_distfile(ARCHIVE
+ URLS "http://live555.com/liveMedia/public/live.${format_version}.tar.gz"
+ FILENAME "live.${format_version}.tar.gz"
+ SHA512 ee2bf17d2803c4bb6f49408a123de9238273749b9c110113facbf78eb01b9961bbd04178335f40d36425c9f96a26ee3da57e970f86d4912b4ec42ab6f4b2c7e9
+)
+
+vcpkg_extract_source_archive(
+ SOURCE_PATH
+ ARCHIVE "${ARCHIVE}"
+ PATCHES
+ fix-RTSPClient.patch
+ fix_operator_overload.patch
+)
+
+file(COPY "${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt" DESTINATION "${SOURCE_PATH}")
+
+vcpkg_cmake_configure(
+ SOURCE_PATH "${SOURCE_PATH}"
+)
+
+vcpkg_cmake_install()
+vcpkg_copy_pdbs()
+
+vcpkg_cmake_config_fixup(PACKAGE_NAME unofficial-live555)
+
+file(GLOB HEADERS
+ "${SOURCE_PATH}/BasicUsageEnvironment/include/*.h*"
+ "${SOURCE_PATH}/groupsock/include/*.h*"
+ "${SOURCE_PATH}/liveMedia/include/*.h*"
+ "${SOURCE_PATH}/UsageEnvironment/include/*.h*"
+)
+
+file(COPY ${HEADERS} DESTINATION "${CURRENT_PACKAGES_DIR}/include")
+vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/COPYING")