set(OTL_VERSION 40497) vcpkg_download_distfile(ARCHIVE URLS "http://otl.sourceforge.net/otlv4_${OTL_VERSION}.zip" FILENAME "otlv4_${OTL_VERSION}.zip" SHA512 1771ff05900c6034ef9d9c30463b9b2490a0510731b79424624f4821631fac93c65545c6a6cfb46fe844d6023c89af4391bd340411ca52c11e5bac081914577f ) 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}" )