diff options
| author | Phil Christensen <philc@microsoft.com> | 2018-12-21 00:36:36 -0800 |
|---|---|---|
| committer | Phil Christensen <philc@microsoft.com> | 2018-12-21 00:36:36 -0800 |
| commit | 09c3cc0d88562083949357e1499130e68c5706c5 (patch) | |
| tree | c848583011035ab21b43f523b23533055a017723 /ports/zxing-cpp | |
| parent | 0d1229d34babdc9c8fbfe2e1b43b38e657519093 (diff) | |
| parent | 4afe20fc123d794cd066d1dc19b8873b3a2a3645 (diff) | |
| download | vcpkg-09c3cc0d88562083949357e1499130e68c5706c5.tar.gz vcpkg-09c3cc0d88562083949357e1499130e68c5706c5.zip | |
Merge branch 'master' of https://github.com/microsoft/vcpkg into dev/philc/4990
Diffstat (limited to 'ports/zxing-cpp')
| -rw-r--r-- | ports/zxing-cpp/CONTROL | 4 | ||||
| -rw-r--r-- | ports/zxing-cpp/portfile.cmake | 43 |
2 files changed, 47 insertions, 0 deletions
diff --git a/ports/zxing-cpp/CONTROL b/ports/zxing-cpp/CONTROL new file mode 100644 index 000000000..52dfd95b2 --- /dev/null +++ b/ports/zxing-cpp/CONTROL @@ -0,0 +1,4 @@ +Source: zxing-cpp +Version: 3.3.3-2 +Build-Depends: opencv[core] +Description: Barcode detection and decoding library. diff --git a/ports/zxing-cpp/portfile.cmake b/ports/zxing-cpp/portfile.cmake new file mode 100644 index 000000000..405210d9c --- /dev/null +++ b/ports/zxing-cpp/portfile.cmake @@ -0,0 +1,43 @@ +include(vcpkg_common_functions) + +vcpkg_check_linkage(ONLY_STATIC_LIBRARY) + +vcpkg_from_github( + OUT_SOURCE_PATH SOURCE_PATH + REPO glassechidna/zxing-cpp + REF 5aad4744a3763d814df98a18886979893e638274 + SHA512 a079ad47171224de4469e76bf0779b6ebc9c6dfb3604bd5dbf5e6e5f321d9e6255f689daa749855f8400023602f1773214013c006442e9b32dd4b8146c888c02 + HEAD_REF master +) + +vcpkg_configure_cmake( + SOURCE_PATH ${SOURCE_PATH} + PREFER_NINJA + OPTIONS -DCMAKE_DISABLE_FIND_PACKAGE_Iconv=ON +) + +vcpkg_install_cmake() + +vcpkg_fixup_cmake_targets(CONFIG_PATH "lib/zxing/cmake" TARGET_PATH share/zxing) + +file(MAKE_DIRECTORY ${CURRENT_PACKAGES_DIR}/tools/zxing) +if (WIN32) + file(COPY ${CURRENT_PACKAGES_DIR}/bin/zxing.exe DESTINATION ${CURRENT_PACKAGES_DIR}/tools/zxing) +else(WIN32) + file(COPY ${CURRENT_PACKAGES_DIR}/bin/zxing DESTINATION ${CURRENT_PACKAGES_DIR}/tools/zxing) +endif(WIN32) +vcpkg_copy_tool_dependencies(${CURRENT_PACKAGES_DIR}/tools/zxing) + +vcpkg_copy_pdbs() +file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/bin) +file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/lib/zxing) +file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/lib/pkgconfig) +file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/bin) +file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include) +file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/lib/pkgconfig) +file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/lib/zxing) + +# Handle copyright +file(MAKE_DIRECTORY ${CURRENT_PACKAGES_DIR}/share/zxing-cpp) +file(COPY ${SOURCE_PATH}/COPYING DESTINATION ${CURRENT_PACKAGES_DIR}/share/zxing-cpp) +file(RENAME ${CURRENT_PACKAGES_DIR}/share/zxing-cpp/COPYING ${CURRENT_PACKAGES_DIR}/share/zxing-cpp/copyright) |
