diff options
| author | Patrick Grison <36514071+pgrison@users.noreply.github.com> | 2018-04-17 19:25:31 +0200 |
|---|---|---|
| committer | Robert Schumacher <roschuma@microsoft.com> | 2018-04-17 10:25:30 -0700 |
| commit | fbf5fe822951437de2124643658131c222d9deca (patch) | |
| tree | 8add76a6577777f5e921ad877a5c0f381afdf07e | |
| parent | 9d52f41a8f6a2b6905b439217add223c403e8623 (diff) | |
| download | vcpkg-fbf5fe822951437de2124643658131c222d9deca.tar.gz vcpkg-fbf5fe822951437de2124643658131c222d9deca.zip | |
[vxl] first port - vxl commit 7a130cf of 2018/04/14 (#3265)
| -rw-r--r-- | ports/vxl/CONTROL | 3 | ||||
| -rw-r--r-- | ports/vxl/portfile.cmake | 23 |
2 files changed, 26 insertions, 0 deletions
diff --git a/ports/vxl/CONTROL b/ports/vxl/CONTROL new file mode 100644 index 000000000..33cd87cb8 --- /dev/null +++ b/ports/vxl/CONTROL @@ -0,0 +1,3 @@ +Source: vxl +Version: 20180414-7a130cf +Description: A multi-platform collection of C++ software libraries for Computer Vision and Image Understanding. diff --git a/ports/vxl/portfile.cmake b/ports/vxl/portfile.cmake new file mode 100644 index 000000000..c2ea3d929 --- /dev/null +++ b/ports/vxl/portfile.cmake @@ -0,0 +1,23 @@ +include(vcpkg_common_functions) + +vcpkg_from_github( + OUT_SOURCE_PATH SOURCE_PATH + REPO vxl/vxl + REF 7a130cf05e907a6500e3e717297082c46e77f524 + SHA512 b9f7e48e37b44469031c6de1bf2a3d0aa0ecf4d3c2f4dd0d1a84c273ca8a778b48f3caf7ec6ef0f2dea1dc534ebfdb6b2cde47a56d81aa4f0685114c0bda157c + HEAD_REF master +) + +vcpkg_configure_cmake( + SOURCE_PATH ${SOURCE_PATH} + PREFER_NINJA +) + +vcpkg_install_cmake() + +vcpkg_copy_pdbs() + +file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include) +file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/share) + +file(INSTALL ${SOURCE_PATH}/core/vxl_copyright.h DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)
\ No newline at end of file |
