1
0
mirror of https://github.com/SerenityOS/serenity synced 2024-07-05 20:54:44 +00:00
serenity/Ports/libtiff/package.sh

20 lines
436 B
Bash
Raw Permalink Normal View History

2021-02-17 21:54:04 +00:00
#!/usr/bin/env -S bash ../.port_include.sh
port='libtiff'
version='4.5.1'
2023-07-10 11:10:29 +00:00
files=(
"http://download.osgeo.org/libtiff/tiff-${version}.tar.xz#3c080867114c26edab3129644a63b708028a90514b7fe3126e38e11d24f9f88a"
2023-07-10 11:10:29 +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-08 09:44:52 +00:00
)
workdir="tiff-${version}"
depends=(
'libjpeg'
'xz'
'zstd'
)