mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 02:19:00 +08:00
32 lines
1.1 KiB
CMake
32 lines
1.1 KiB
CMake
set(OTL_VERSION 40478)
|
|
|
|
vcpkg_download_distfile(ARCHIVE
|
|
URLS "http://otl.sourceforge.net/otlv4_${OTL_VERSION}.zip"
|
|
FILENAME "otlv4_${OTL_VERSION}.zip"
|
|
SHA512 1b36aff8e18bded3bade20b63191d9fcd77a9e7abfdfd6c4f79da9a7cc205a21a741d088c453ef1fb8dedf161a320378bdfa9c0ff7a7d79916b6bef8f4268b6d
|
|
)
|
|
|
|
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}"
|
|
)
|