aboutsummaryrefslogtreecommitdiff
path: root/ports/libarchive/portfile.cmake
blob: 3b69a69b91522ebbbba68b6a1abee5c575c15c2f (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# libarchive uses winapi functions not available in WindowsStore
if (VCPKG_CMAKE_SYSTEM_NAME STREQUAL WindowsStore)
    message(FATAL_ERROR "Error: UWP builds are not supported.")
endif()

include(vcpkg_common_functions)
vcpkg_from_github(
    OUT_SOURCE_PATH SOURCE_PATH
    REPO libarchive/libarchive
    REF 614110e76d9dbb9ed3e159a71cbd75fa3b23efe3
    SHA512 8feac2c0e22e5b7c05f3be97c774ad82d39bdea4b3fa3a2b297b85f8a5a9f548c528ef63f5495afd42fb75759e03a4108f3831b27103f899f8fe4ef7e8e2d1cf
    HEAD_REF master
    PATCHES
        fix-buildsystem.patch
        fix-dependencies.patch
        fix-lz4.patch
        fix-zstd.patch
)

set(BUILD_libarchive_bzip2 OFF)
if("bzip2" IN_LIST FEATURES)
  set(BUILD_libarchive_bzip2 ON)
endif()

set(BUILD_libarchive_libxml2 OFF)
if("libxml2" IN_LIST FEATURES)
  set(BUILD_libarchive_libxml2 ON)
endif()

set(BUILD_libarchive_lz4 OFF)
if("lz4" IN_LIST FEATURES)
  set(BUILD_libarchive_lz4 ON)
endif()

set(BUILD_libarchive_lzma OFF)
if("lzma" IN_LIST FEATURES)
  set(BUILD_libarchive_lzma ON)
endif()

set(BUILD_libarchive_lzo OFF)
if("lzo" IN_LIST FEATURES)
  set(BUILD_libarchive_lzo ON)
endif()

set(BUILD_libarchive_openssl OFF)
if("openssl" IN_LIST FEATURES)
  set(BUILD_libarchive_openssl ON)
endif()

vcpkg_configure_cmake(
    SOURCE_PATH ${SOURCE_PATH}
    PREFER_NINJA
    OPTIONS
        -DENABLE_BZip2=${BUILD_libarchive_bzip2}
        -DENABLE_LIBXML2=${BUILD_libarchive_libxml2}
        -DENABLE_LZ4=${BUILD_libarchive_lz4}
        -DENABLE_LZMA=${BUILD_libarchive_lzma}
        -DENABLE_LZO=${BUILD_libarchive_lzo}
        -DENABLE_OPENSSL=${BUILD_libarchive_openssl}
        -DENABLE_PCREPOSIX=OFF
        -DENABLE_NETTLE=OFF
        -DENABLE_EXPAT=OFF
        -DENABLE_LibGCC=OFF
        -DENABLE_CNG=OFF
        -DENABLE_TAR=OFF
        -DENABLE_CPIO=OFF
        -DENABLE_CAT=OFF
        -DENABLE_XATTR=OFF
        -DENABLE_ACL=OFF
        -DENABLE_TEST=OFF
        -DENABLE_ICONV=OFF
        -DPOSIX_REGEX_LIB=NONE
        -DENABLE_WERROR=OFF
)

vcpkg_install_cmake()
vcpkg_copy_pdbs()

file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
foreach(HEADER ${CURRENT_PACKAGES_DIR}/include/archive.h ${CURRENT_PACKAGES_DIR}/include/archive_entry.h)
    file(READ ${HEADER} CONTENTS)
    string(REPLACE "(!defined LIBARCHIVE_STATIC)" "0" CONTENTS "${CONTENTS}")
    file(WRITE ${HEADER} "${CONTENTS}")
endforeach()

file(COPY ${SOURCE_PATH}/COPYING DESTINATION ${CURRENT_PACKAGES_DIR}/share/libarchive)
file(RENAME ${CURRENT_PACKAGES_DIR}/share/libarchive/COPYING ${CURRENT_PACKAGES_DIR}/share/libarchive/copyright)