mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-28 01:09:07 +08:00
Merge branch 'traversaro-add-openjpeg'
This commit is contained in:
commit
87da26ec27
3
ports/openjpeg/CONTROL
Normal file
3
ports/openjpeg/CONTROL
Normal file
@ -0,0 +1,3 @@
|
||||
Source: openjpeg
|
||||
Version: 2.1.2
|
||||
Description: JPEG 2000 image library
|
35
ports/openjpeg/portfile.cmake
Normal file
35
ports/openjpeg/portfile.cmake
Normal file
@ -0,0 +1,35 @@
|
||||
include(${CMAKE_TRIPLET_FILE})
|
||||
include(vcpkg_common_functions)
|
||||
set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/openjpeg-2.1.2)
|
||||
vcpkg_download_distfile(ARCHIVE
|
||||
URLS "https://github.com/uclouvain/openjpeg/archive/v2.1.2.zip"
|
||||
FILENAME "openjpeg-2.1.2.zip"
|
||||
SHA512 45518b92b2a8e7218ab3efdebe1acf0437c01ab2e4d5769da17103a76ba38a7305fb36d0ceeca0576d53c071a3482d2d3f01d6e48a569191290bfba9274ef7b4
|
||||
)
|
||||
vcpkg_extract_source_archive(${ARCHIVE})
|
||||
|
||||
vcpkg_configure_cmake(
|
||||
SOURCE_PATH ${SOURCE_PATH}
|
||||
OPTIONS -DBUILD_CODEC:BOOL=OFF
|
||||
-DOPENJPEG_INSTALL_PACKAGE_DIR=share/openjpeg
|
||||
)
|
||||
|
||||
vcpkg_install_cmake()
|
||||
|
||||
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
|
||||
|
||||
# Handle debug cmake config files (see https://github.com/Microsoft/vcpkg/issues/77)
|
||||
file(READ ${CURRENT_PACKAGES_DIR}/debug/share/openjpeg/OpenJPEGTargets-debug.cmake OPENJPEG_DEBUG_MODULE)
|
||||
string(REPLACE "\${_IMPORT_PREFIX}" "\${_IMPORT_PREFIX}/debug" OPENJPEG_DEBUG_MODULE "${OPENJPEG_DEBUG_MODULE}")
|
||||
file(WRITE ${CURRENT_PACKAGES_DIR}/share/openjpeg/OpenJPEGTargets-debug.cmake "${OPENJPEG_DEBUG_MODULE}")
|
||||
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/share)
|
||||
|
||||
# Cleanup Visual C++ Redistributable runtime
|
||||
file(REMOVE ${CURRENT_PACKAGES_DIR}/bin/msvcp140.dll)
|
||||
file(REMOVE ${CURRENT_PACKAGES_DIR}/bin/vcruntime140.dll)
|
||||
file(REMOVE ${CURRENT_PACKAGES_DIR}/debug/bin/msvcp140.dll)
|
||||
file(REMOVE ${CURRENT_PACKAGES_DIR}/debug/bin/vcruntime140.dll)
|
||||
|
||||
# Handle copyright
|
||||
file(COPY ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/openjpeg)
|
||||
file(RENAME ${CURRENT_PACKAGES_DIR}/share/openjpeg/LICENSE ${CURRENT_PACKAGES_DIR}/share/openjpeg/copyright)
|
Loading…
Reference in New Issue
Block a user