mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 11:57:35 +00:00
Ports/libgd: Explicitly specify which dependencies to include
Previously, building `libgd` with `fontconfig` already installed would cause the build to fail.
This commit is contained in:
parent
2114c27656
commit
1f2aef4028
1 changed files with 18 additions and 2 deletions
|
@ -3,9 +3,25 @@ port=libgd
|
||||||
version=2.3.3
|
version=2.3.3
|
||||||
useconfigure=true
|
useconfigure=true
|
||||||
use_fresh_config_sub=true
|
use_fresh_config_sub=true
|
||||||
configopts=("--without-x")
|
configopts=(
|
||||||
|
"--with-sysroot=${SERENITY_INSTALL_ROOT}"
|
||||||
|
'--without-avif'
|
||||||
|
'--without-heif'
|
||||||
|
'--without-liq'
|
||||||
|
'--without-raqm'
|
||||||
|
'--without-webp'
|
||||||
|
'--without-x'
|
||||||
|
'--without-xpm'
|
||||||
|
)
|
||||||
config_sub_paths=("config/config.sub")
|
config_sub_paths=("config/config.sub")
|
||||||
files=(
|
files=(
|
||||||
"https://github.com/libgd/libgd/releases/download/gd-${version}/libgd-${version}.tar.gz dd3f1f0bb016edcc0b2d082e8229c822ad1d02223511997c80461481759b1ed2"
|
"https://github.com/libgd/libgd/releases/download/gd-${version}/libgd-${version}.tar.gz dd3f1f0bb016edcc0b2d082e8229c822ad1d02223511997c80461481759b1ed2"
|
||||||
)
|
)
|
||||||
depends=("libpng")
|
depends=(
|
||||||
|
'fontconfig'
|
||||||
|
'freetype'
|
||||||
|
'libjpeg'
|
||||||
|
'libpng'
|
||||||
|
'libtiff'
|
||||||
|
'zlib'
|
||||||
|
)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue