2021-02-17 21:54:04 +00:00
|
|
|
#!/usr/bin/env -S bash ../.port_include.sh
|
2022-06-03 15:21:38 +00:00
|
|
|
port='libtiff'
|
2023-09-01 19:02:16 +00:00
|
|
|
version='4.5.1'
|
2023-07-10 11:10:29 +00:00
|
|
|
files=(
|
2023-09-01 19:02:16 +00:00
|
|
|
"http://download.osgeo.org/libtiff/tiff-${version}.tar.xz#3c080867114c26edab3129644a63b708028a90514b7fe3126e38e11d24f9f88a"
|
2023-07-10 11:10:29 +00:00
|
|
|
)
|
2022-06-03 15:21:38 +00:00
|
|
|
useconfigure='true'
|
2022-06-08 09:44:52 +00:00
|
|
|
configopts=(
|
|
|
|
"--with-sysroot=${SERENITY_INSTALL_ROOT}"
|
2023-09-01 13:27:50 +00:00
|
|
|
'--prefix=/usr/local'
|
|
|
|
'--disable-static'
|
|
|
|
'--enable-shared'
|
2022-06-08 09:44:52 +00:00
|
|
|
)
|
2022-06-03 15:21:38 +00:00
|
|
|
workdir="tiff-${version}"
|
2023-09-01 13:27:50 +00:00
|
|
|
depends=(
|
|
|
|
'libjpeg'
|
|
|
|
'xz'
|
|
|
|
'zstd'
|
|
|
|
)
|