mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 18:02:05 -05:00
16 lines
408 B
Bash
Executable file
16 lines
408 B
Bash
Executable file
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port='imagemagick'
|
|
version='7.1.1-15'
|
|
workdir="ImageMagick-${version}"
|
|
useconfigure='true'
|
|
files=(
|
|
"https://github.com/ImageMagick/ImageMagick/archive/refs/tags/${version}.tar.gz#2372192a76af9be43c0543dd7ae6dfbf34b11fc0203583453ce3f9f707c36bcc"
|
|
)
|
|
configopts=(
|
|
"--with-sysroot=${SERENITY_INSTALL_ROOT}"
|
|
)
|
|
depends=(
|
|
'libjpeg'
|
|
'libpng'
|
|
'libtiff'
|
|
)
|