mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-29 09:09:01 +08:00
1550b9e71b
* [many ports] Upgrades 2019.07.11 * Re-generate patches and fix build errors. * [manyport]Fix build errors. * Fix avro-c and console-bridge failures, revert curl and tesseract * fix botan failure * Fix build errors and undo some ports upgrades. * [aws-c-common,chipmunk,cxxopts,grpc]Fix build errors * Fix build errors. * [angle]Undo upgrade changes. * [directxtk]Fix UWP build error (#7233) * Revert leptonica since it cause tesseract failed * Revert jsonnet * [google-cloud-cpp] Disable parallel configure due to source directory writes * [many ports] Undo undesired changes * [bitsery] Fix indentation * [avro-c][aws-c-common][graphite2] Convert line endings to minimize PR diff * fix console-bridge and remove usockets unused patch * update ogre patch * [many ports] Revert unneeded changes w.r.t. master. Add missing write to console-bridge. * [console-bridge] Fix export macro * [avro-c] Revert upgrade; split to #7875 * [avro-c] Complete previous revert
87 lines
2.6 KiB
CMake
87 lines
2.6 KiB
CMake
# 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
|
|
)
|
|
|
|
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)
|