[otl] Fix header file name and version number (#9107)

This commit is contained in:
Lily 2020-01-07 07:01:33 +08:00 committed by dan-shaw
parent eab8812ac5
commit 9c860988ab
2 changed files with 11 additions and 6 deletions

View File

@ -1,4 +1,4 @@
Source: otl
Version: 4.0.448
Version: 4.0.448-1
Description: Oracle, Odbc and DB2-CLI Template Library
Homepage: http://otl.sourceforge.net/

View File

@ -1,8 +1,8 @@
include(vcpkg_common_functions)
set(OTL_VERSION 40448)
vcpkg_download_distfile(ARCHIVE
URLS "http://otl.sourceforge.net/otlv4_40448.zip"
FILENAME "otlv4_h2-4.0.448.zip"
URLS "http://otl.sourceforge.net/otlv4_${OTL_VERSION}.zip"
FILENAME "otl-v${OTL_VERSION}.zip"
SHA512 285bf8bb0fa38ab3030af09a2939fd8e2eaadd14e65d05c6e18f4bc12070ba4e112c41e2d38c546338d51bdf09748b158b1799599f5ed9a7959a7799869b1305
)
@ -12,5 +12,10 @@ vcpkg_extract_source_archive_ex(
NO_REMOVE_ONE_LEVEL
)
file(INSTALL ${SOURCE_PATH}/otlv40448.h DESTINATION ${CURRENT_PACKAGES_DIR}/include/otl)
file(INSTALL ${SOURCE_PATH}/otlv40448.h DESTINATION ${CURRENT_PACKAGES_DIR}/share/otl RENAME copyright)
file(INSTALL "${SOURCE_PATH}/otlv${OTL_VERSION}.h"
DESTINATION "${CURRENT_PACKAGES_DIR}/include/otl"
RENAME otlv4.h)
file(INSTALL "${SOURCE_PATH}/otlv${OTL_VERSION}.h"
DESTINATION "${CURRENT_PACKAGES_DIR}/share/otl"
RENAME copyright)