mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
19 lines
436 B
Bash
Executable file
19 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'
|
|
)
|