1
0
mirror of https://github.com/SerenityOS/serenity synced 2024-07-03 10:53:37 +00:00
serenity/Ports/libtiff/package.sh

20 lines
436 B
Bash
Executable File

#!/usr/bin/env -S bash ../.port_include.sh
port='libtiff'
version='4.5.1'
files=(
"http://download.osgeo.org/libtiff/tiff-${version}.tar.xz#3c080867114c26edab3129644a63b708028a90514b7fe3126e38e11d24f9f88a"
)
useconfigure='true'
configopts=(
"--with-sysroot=${SERENITY_INSTALL_ROOT}"
'--prefix=/usr/local'
'--disable-static'
'--enable-shared'
)
workdir="tiff-${version}"
depends=(
'libjpeg'
'xz'
'zstd'
)