mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-27 18:31:15 +08:00
[ocilib] Add new port (#11549)
* ocilib port * Update ci.baseline * Code review * Code review
This commit is contained in:
parent
46d0f05e2d
commit
dbd822571e
5
ports/ocilib/CONTROL
Normal file
5
ports/ocilib/CONTROL
Normal file
@ -0,0 +1,5 @@
|
||||
Source: ocilib
|
||||
Version: 4.6.4
|
||||
Homepage: https://vrogier.github.io/ocilib/
|
||||
Description: OCILIB is an open source and cross platform Oracle Driver that delivers efficient access to Oracle databases.
|
||||
Supports: !(arm|uwp)
|
@ -0,0 +1,13 @@
|
||||
diff --git a/configure b/configure
|
||||
index 6a87f9c..89ca6db 100755
|
||||
--- a/configure
|
||||
+++ b/configure
|
||||
@@ -12628,7 +12628,7 @@ $as_echo "$OCILIB_PREFIX" >&6; }
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for OCILIB version" >&5
|
||||
$as_echo_n "checking for OCILIB version... " >&6; }
|
||||
|
||||
- OCILIB_VER=`cat VERSION`
|
||||
+ OCILIB_VER=`cat ${srcdir}/VERSION`
|
||||
|
||||
LT_MAJOR=`echo $OCILIB_VER | sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\1/'`
|
||||
LT_AGE=`echo $OCILIB_VER | sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\2/'`
|
50
ports/ocilib/portfile.cmake
Normal file
50
ports/ocilib/portfile.cmake
Normal file
@ -0,0 +1,50 @@
|
||||
vcpkg_fail_port_install(ON_ARCH "arm" ON_TARGET "uwp")
|
||||
|
||||
vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO vrogier/ocilib
|
||||
REF v4.6.4
|
||||
SHA512 83f5614a23c8fb4ab02517dec95d8b490c5ef472302735d5cc4cf483cc51513cc81ae2e1b4618c7c73fb5b071efe422e463b46fa79492ccb4775b511a943295a
|
||||
HEAD_REF master
|
||||
PATCHES
|
||||
out_of_source_build_version_file_configure.patch
|
||||
)
|
||||
|
||||
if(VCPKG_TARGET_IS_WINDOWS)
|
||||
if(VCPKG_PLATFORM_TOOLSET MATCHES "v142")
|
||||
set(SOLUTION_TYPE vs2019)
|
||||
elseif(VCPKG_PLATFORM_TOOLSET MATCHES "v141")
|
||||
set(SOLUTION_TYPE vs2017)
|
||||
else()
|
||||
set(SOLUTION_TYPE vs2015)
|
||||
endif()
|
||||
|
||||
# There is no debug configuration
|
||||
# As it is a C library, build the release configuration and copy its output to the debug folder
|
||||
set(VCPKG_BUILD_TYPE release)
|
||||
vcpkg_install_msbuild(
|
||||
SOURCE_PATH ${SOURCE_PATH}
|
||||
PROJECT_SUBPATH proj/dll/ocilib_dll_${SOLUTION_TYPE}.sln
|
||||
INCLUDES_SUBPATH include
|
||||
LICENSE_SUBPATH LICENSE
|
||||
RELEASE_CONFIGURATION "Release - ANSI"
|
||||
PLATFORM ${VCPKG_TARGET_ARCHITECTURE}
|
||||
USE_VCPKG_INTEGRATION
|
||||
ALLOW_ROOT_INCLUDES)
|
||||
|
||||
file(MAKE_DIRECTORY ${CURRENT_PACKAGES_DIR}/debug)
|
||||
file(COPY ${CURRENT_PACKAGES_DIR}/bin ${CURRENT_PACKAGES_DIR}/lib DESTINATION ${CURRENT_PACKAGES_DIR}/debug)
|
||||
else()
|
||||
vcpkg_configure_make(
|
||||
SOURCE_PATH ${SOURCE_PATH}
|
||||
OPTIONS
|
||||
--with-oracle-import=runtime
|
||||
)
|
||||
|
||||
vcpkg_install_make()
|
||||
|
||||
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/share)
|
||||
file(RENAME ${CURRENT_PACKAGES_DIR}/share/doc/${PORT} ${CURRENT_PACKAGES_DIR}/share/${PORT})
|
||||
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/share/doc)
|
||||
file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)
|
||||
endif()
|
@ -1248,6 +1248,10 @@ numactl:x86-windows=fail
|
||||
nvtt:arm64-windows=fail
|
||||
nvtt:arm-uwp=fail
|
||||
nvtt:x64-uwp=fail
|
||||
ocilib:arm64-windows=fail
|
||||
ocilib:arm-uwp=fail
|
||||
ocilib:x64-uwp=fail
|
||||
ocilib:x64-windows-static=fail
|
||||
octomap:arm-uwp=fail
|
||||
octomap:x64-uwp=fail
|
||||
ode:arm64-windows=fail
|
||||
|
Loading…
x
Reference in New Issue
Block a user