[levmar] Add new port (#13164)

Co-authored-by: LilyWangL <wangli28@beyondsoft.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
This commit is contained in:
Alberto Jaspe 2020-09-01 10:36:35 +02:00 committed by GitHub
parent a0536798ee
commit ea82e46508
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 51 additions and 0 deletions

View File

@ -0,0 +1,11 @@
diff --git a/CMakeLists.txt b/CMakeLists.txt
index cc6789f..d2757f9 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -95,3 +95,6 @@ IF(BUILD_DEMO)
ENDIF(BUILD_DEMO)
#SUBDIRS(matlab)
+
+install(TARGETS levmar LIBRARY DESTINATION "lib/")
+install(FILES "${CMAKE_SOURCE_DIR}/levmar.h" DESTINATION "include/levmar/")

View File

@ -0,0 +1,33 @@
vcpkg_fail_port_install(MESSAGE "levmar currently only checked on Windows"
ON_TARGET "OSX" "Linux" "UWP"
)
vcpkg_download_distfile(ARCHIVE
URLS "http://users.ics.forth.gr/~lourakis/levmar/levmar-2.6.tgz"
FILENAME "levmar-2.6.tgz"
SHA512 5b4c64b63be9b29d6ad2df435af86cd2c2e3216313378561a670ac6a392a51bbf1951e96c6b1afb77c570f23dd8e194017808e46929fec2d8d9a7fe6cf37022b
)
vcpkg_extract_source_archive_ex(
OUT_SOURCE_PATH SOURCE_PATH
ARCHIVE ${ARCHIVE}
PATCHES add-install.patch # patch just adding the install commands to original CMakeLists.txt
)
vcpkg_configure_cmake(
SOURCE_PATH ${SOURCE_PATH}
PREFER_NINJA
DISABLE_PARALLEL_CONFIGURE
OPTIONS
-DHAVE_LAPACK=OFF
-DHAVE_PLASMA=OFF
-DBUILD_DEMO=OFF
)
vcpkg_install_cmake()
# Handle copyright
file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)
# Handle duplicated debug includes
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")

7
ports/levmar/vcpkg.json Normal file
View File

@ -0,0 +1,7 @@
{
"name": "levmar",
"version-string": "2.6",
"description": "Levenberg-Marquardt nonlinear least squares optimization algorithm",
"homepage": "http://users.ics.forth.gr/~lourakis/levmar/",
"supports": "!(uwp | osx | linux)"
}