aboutsummaryrefslogtreecommitdiff
path: root/ports/tiff/portfile.cmake
blob: e6d8d9cc66c29dae7924e3d5ec6bccaa665063b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
include(vcpkg_common_functions)
vcpkg_download_distfile(ARCHIVE
    URL "http://download.osgeo.org/libtiff/tiff-4.0.6.tar.gz"
    FILENAME "tiff-4.0.6.tar.gz"
    SHA512 2c8dbaaaab9f82a7722bfe8cb6fcfcf67472beb692f1b7dafaf322759e7016dad1bc58457c0f03db50aa5bd088fef2b37358fcbc1524e20e9e14a9620373fdf8
)
vcpkg_extract_source_archive(${ARCHIVE})

vcpkg_configure_cmake(
    SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/tiff-4.0.6
    OPTIONS -Dcxx=OFF
)

vcpkg_build_cmake()
vcpkg_install_cmake()

file(REMOVE_RECURSE
    ${CURRENT_PACKAGES_DIR}/debug/include
    ${CURRENT_PACKAGES_DIR}/debug/share
    ${CURRENT_PACKAGES_DIR}/share
)
file(COPY
    ${CURRENT_BUILDTREES_DIR}/src/tiff-4.0.6/COPYRIGHT
    DESTINATION ${CURRENT_PACKAGES_DIR}/share/tiff
)
file(RENAME
    ${CURRENT_PACKAGES_DIR}/share/tiff/COPYRIGHT
    ${CURRENT_PACKAGES_DIR}/share/tiff/c2
)
file(RENAME
    ${CURRENT_PACKAGES_DIR}/share/tiff/c2
    ${CURRENT_PACKAGES_DIR}/share/tiff/copyright
)
file(GLOB EXES ${CURRENT_PACKAGES_DIR}/bin/*.exe ${CURRENT_PACKAGES_DIR}/debug/bin/*.exe)
file(REMOVE ${EXES})
vcpkg_copy_pdbs()