mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-28 19:25:27 +08:00
[bzip2] add a "tool" feature to control the build of bzip2.exe (#26998)
* [bzip2] add a "tool" feature to control the build of bzip2.exe This is modelled after curl[tool], but it is on by default for compatibility with the existing portfile. * x-add-version, format * Fix bzip2 git-tree. * Remove deprecated rules * update bzip2 git-tree * Add the bzip2-1.0.6 SPDX license identifier * treeish Co-authored-by: Billy O'Neal <bion@microsoft.com>
This commit is contained in:
parent
771420ca5c
commit
6d5a3a5e4a
@ -11,17 +11,23 @@ vcpkg_extract_source_archive_ex(
|
|||||||
PATCHES fix-import-export-macros.patch
|
PATCHES fix-import-export-macros.patch
|
||||||
)
|
)
|
||||||
|
|
||||||
|
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
|
||||||
|
INVERTED_FEATURES
|
||||||
|
tool BZIP2_SKIP_TOOLS
|
||||||
|
)
|
||||||
|
|
||||||
file(COPY "${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt" DESTINATION "${SOURCE_PATH}")
|
file(COPY "${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt" DESTINATION "${SOURCE_PATH}")
|
||||||
|
|
||||||
vcpkg_configure_cmake(
|
vcpkg_cmake_configure(
|
||||||
SOURCE_PATH ${SOURCE_PATH}
|
SOURCE_PATH ${SOURCE_PATH}
|
||||||
PREFER_NINJA
|
OPTIONS
|
||||||
|
${FEATURE_OPTIONS}
|
||||||
OPTIONS_DEBUG
|
OPTIONS_DEBUG
|
||||||
-DBZIP2_SKIP_HEADERS=ON
|
-DBZIP2_SKIP_HEADERS=ON
|
||||||
-DBZIP2_SKIP_TOOLS=ON
|
-DBZIP2_SKIP_TOOLS=ON
|
||||||
)
|
)
|
||||||
|
|
||||||
vcpkg_install_cmake()
|
vcpkg_cmake_install()
|
||||||
vcpkg_copy_pdbs()
|
vcpkg_copy_pdbs()
|
||||||
|
|
||||||
file(READ "${CURRENT_PACKAGES_DIR}/include/bzlib.h" BZLIB_H)
|
file(READ "${CURRENT_PACKAGES_DIR}/include/bzlib.h" BZLIB_H)
|
||||||
|
@ -1,8 +1,27 @@
|
|||||||
{
|
{
|
||||||
"name": "bzip2",
|
"name": "bzip2",
|
||||||
"version-semver": "1.0.8",
|
"version-semver": "1.0.8",
|
||||||
"port-version": 2,
|
"port-version": 3,
|
||||||
"description": "bzip2 is a freely available, patent free, high-quality data compressor. It typically compresses files to within 10% to 15% of the best available techniques (the PPM family of statistical compressors), whilst being around twice as fast at compression and six times faster at decompression.",
|
"description": "bzip2 is a freely available, patent free, high-quality data compressor. It typically compresses files to within 10% to 15% of the best available techniques (the PPM family of statistical compressors), whilst being around twice as fast at compression and six times faster at decompression.",
|
||||||
"homepage": "https://sourceware.org/bzip2/",
|
"homepage": "https://sourceware.org/bzip2/",
|
||||||
"documentation": "https://sourceware.org/bzip2/docs.html"
|
"documentation": "https://sourceware.org/bzip2/docs.html",
|
||||||
|
"license": "bzip2-1.0.6",
|
||||||
|
"dependencies": [
|
||||||
|
{
|
||||||
|
"name": "vcpkg-cmake",
|
||||||
|
"host": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "vcpkg-cmake-config",
|
||||||
|
"host": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"default-features": [
|
||||||
|
"tool"
|
||||||
|
],
|
||||||
|
"features": {
|
||||||
|
"tool": {
|
||||||
|
"description": "Builds bzip2 executable"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,10 @@
|
|||||||
{
|
{
|
||||||
"versions": [
|
"versions": [
|
||||||
|
{
|
||||||
|
"git-tree": "6ee6ad1d0bf78137f7f77671f393abc83363a710",
|
||||||
|
"version-semver": "1.0.8",
|
||||||
|
"port-version": 3
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"git-tree": "a1ea352502e69888a565563d9151d3f7ab609fb1",
|
"git-tree": "a1ea352502e69888a565563d9151d3f7ab609fb1",
|
||||||
"version-semver": "1.0.8",
|
"version-semver": "1.0.8",
|
||||||
|
@ -1230,7 +1230,7 @@
|
|||||||
},
|
},
|
||||||
"bzip2": {
|
"bzip2": {
|
||||||
"baseline": "1.0.8",
|
"baseline": "1.0.8",
|
||||||
"port-version": 2
|
"port-version": 3
|
||||||
},
|
},
|
||||||
"c-ares": {
|
"c-ares": {
|
||||||
"baseline": "1.18.1",
|
"baseline": "1.18.1",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user