mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
14 lines
456 B
Bash
Executable file
14 lines
456 B
Bash
Executable file
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port='libtiff'
|
|
version='4.4.0'
|
|
files="http://download.osgeo.org/libtiff/tiff-${version}.tar.xz tiff-${version}.tar.xz 49307b510048ccc7bc40f2cba6e8439182fe6e654057c1a1683139bf2ecb1dc1"
|
|
auth_type='sha256'
|
|
useconfigure='true'
|
|
configopts=(
|
|
"--with-sysroot=${SERENITY_INSTALL_ROOT}"
|
|
"--prefix=/usr/local"
|
|
"--disable-static"
|
|
"--enable-shared"
|
|
)
|
|
workdir="tiff-${version}"
|
|
depends=("libjpeg" "zstd" "xz")
|