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

14 lines
437 B
Bash
Raw Normal View History

2021-02-17 21:54:04 +00:00
#!/usr/bin/env -S bash ../.port_include.sh
port='libtiff'
version='4.5.0'
files="http://download.osgeo.org/libtiff/tiff-${version}.tar.xz tiff-${version}.tar.xz dafac979c5e7b6c650025569c5a4e720995ba5f17bc17e6276d1f12427be267c"
useconfigure='true'
2022-06-08 09:44:52 +00:00
configopts=(
"--with-sysroot=${SERENITY_INSTALL_ROOT}"
"--prefix=/usr/local"
"--disable-static"
"--enable-shared"
)
workdir="tiff-${version}"
depends=("libjpeg" "zstd" "xz")