mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-01-14 12:28:14 +08:00
[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:
parent
a0536798ee
commit
ea82e46508
11
ports/levmar/add-install.patch
Normal file
11
ports/levmar/add-install.patch
Normal 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/")
|
33
ports/levmar/portfile.cmake
Normal file
33
ports/levmar/portfile.cmake
Normal 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
7
ports/levmar/vcpkg.json
Normal 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)"
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user