mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
50758181a3
This commit updates the formatting for all ports to be updated in this PR in one go, to keep those changes centralized.
16 lines
407 B
Bash
Executable file
16 lines
407 B
Bash
Executable file
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port='imagemagick'
|
|
version='7.1.1-5'
|
|
workdir="ImageMagick-${version}"
|
|
useconfigure='true'
|
|
files=(
|
|
"https://github.com/ImageMagick/ImageMagick/archive/refs/tags/${version}.tar.gz#dd23689304b8cf41572c3af6b0ddccfe21c5b9d9abddaf978f314696408d0750"
|
|
)
|
|
configopts=(
|
|
"--with-sysroot=${SERENITY_INSTALL_ROOT}"
|
|
)
|
|
depends=(
|
|
'libjpeg'
|
|
'libpng'
|
|
'libtiff'
|
|
)
|