mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-28 13:43:45 +03:00
15 lines
456 B
Bash
Executable File
15 lines
456 B
Bash
Executable File
#!/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"
|
|
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")
|