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-03-27 11:00:28 +00:00
|
|
|
version='4.5.0'
|
2023-07-10 11:10:29 +00:00
|
|
|
files=(
|
2023-09-02 04:32:27 +00:00
|
|
|
"http://download.osgeo.org/libtiff/tiff-${version}.tar.xz#dafac979c5e7b6c650025569c5a4e720995ba5f17bc17e6276d1f12427be267c"
|
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}"
|
|
|
|
"--prefix=/usr/local"
|
|
|
|
"--disable-static"
|
|
|
|
"--enable-shared"
|
|
|
|
)
|
2022-06-03 15:21:38 +00:00
|
|
|
workdir="tiff-${version}"
|
2021-09-26 22:16:18 +00:00
|
|
|
depends=("libjpeg" "zstd" "xz")
|