1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 06:17:35 +00:00

Ports/libgd: Update formatting to be consistent with other ports

This commit is contained in:
Tim Ledbetter 2023-08-17 17:08:40 +01:00 committed by Tim Schumacher
parent 1f2aef4028
commit d7c1a1ecac

View file

@ -1,8 +1,8 @@
#!/usr/bin/env -S bash ../.port_include.sh #!/usr/bin/env -S bash ../.port_include.sh
port=libgd 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=( configopts=(
"--with-sysroot=${SERENITY_INSTALL_ROOT}" "--with-sysroot=${SERENITY_INSTALL_ROOT}"
'--without-avif' '--without-avif'
@ -13,7 +13,9 @@ configopts=(
'--without-x' '--without-x'
'--without-xpm' '--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"
) )