Add libtiff support (#361)

* add libtiff support

* fix command option not working on *nix

* fix test with libs ext test
This commit is contained in:
Jerry Ma
2024-03-01 19:19:47 +08:00
committed by GitHub
parent b46655ecfe
commit 9664709f21
7 changed files with 78 additions and 11 deletions

View File

@@ -147,7 +147,8 @@
"libpng",
"libjpeg",
"libwebp",
"freetype"
"freetype",
"libtiff"
],
"lib-suggests": [
"zstd",
@@ -330,6 +331,12 @@
"zlib"
]
},
"libtiff": {
"source": "libtiff",
"static-libs-unix": [
"libtiff.a"
]
},
"libuv": {
"source": "libuv",
"static-libs-unix": [

View File

@@ -325,6 +325,15 @@
"path": "COPYING"
}
},
"libtiff": {
"type": "filelist",
"url": "https://download.osgeo.org/libtiff/",
"regex": "/href=\"(?<file>tiff-(?<version>[^\"]+)\\.tar\\.xz)\"/",
"license": {
"type": "file",
"path": "LICENSE.md"
}
},
"libuv": {
"type": "ghtar",
"repo": "libuv/libuv",