mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-16 00:21:36 +08:00
32 lines
1.2 KiB
CMake
32 lines
1.2 KiB
CMake
set(OTL_VERSION 40476)
|
|
|
|
vcpkg_download_distfile(ARCHIVE
|
|
URLS "http://otl.sourceforge.net/otlv4_${OTL_VERSION}.zip"
|
|
FILENAME "otlv4_${OTL_VERSION}-9485a0fe15a7-2.zip"
|
|
SHA512 adb84bc6bc29de01b41d63a59174a7d35bde8124dc602d0687abbb308c5d5471869fe9afc90fb80e4c1acbe94e5b92c6ef7058e89aed60fe4519c82826d2aeb5
|
|
)
|
|
|
|
vcpkg_extract_source_archive(
|
|
SOURCE_PATH
|
|
ARCHIVE "${ARCHIVE}"
|
|
NO_REMOVE_ONE_LEVEL
|
|
)
|
|
|
|
file(INSTALL "${SOURCE_PATH}/otlv${OTL_VERSION}.h"
|
|
DESTINATION "${CURRENT_PACKAGES_DIR}/include/${PORT}"
|
|
RENAME otlv4.h)
|
|
|
|
file(READ "${SOURCE_PATH}/otlv${OTL_VERSION}.h" copyright_contents)
|
|
string(FIND "${copyright_contents}" "#ifndef OTL_H" start_of_source)
|
|
if(start_of_source EQUAL "-1")
|
|
message(FATAL_ERROR "Could not find start of source; the header file has changed in a way that we cannot get the license text.")
|
|
endif()
|
|
string(SUBSTRING "${copyright_contents}" 0 "${start_of_source}" copyright_contents)
|
|
string(REGEX REPLACE "// ?" "" copyright_contents "${copyright_contents}")
|
|
string(REGEX REPLACE "=+\n" "" copyright_contents "${copyright_contents}")
|
|
|
|
file(WRITE
|
|
"${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright"
|
|
"${copyright_contents}"
|
|
)
|