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

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

This commit is contained in:
Tim Ledbetter 2023-08-17 22:59:33 +01:00 committed by Tim Schumacher
parent 79c5b96953
commit 66a3361b39

View file

@ -1,19 +1,35 @@
#!/usr/bin/env -S bash ../.port_include.sh #!/usr/bin/env -S bash ../.port_include.sh
port=freedink port='freedink'
version=109.6 version='109.6'
useconfigure="true" useconfigure='true'
use_fresh_config_sub="true" use_fresh_config_sub='true'
config_sub_paths=("autotools/config.sub") config_sub_paths=(
depends=("SDL2" "SDL2_image" "SDL2_mixer" "SDL2_ttf" "SDL2_gfx" "gettext" "fontconfig" "glm") 'autotools/config.sub'
freedink_data="freedink-data-1.08.20190120" )
depends=(
'fontconfig'
'gettext'
'glm'
'SDL2'
'SDL2_gfx'
'SDL2_image'
'SDL2_mixer'
'SDL2_ttf'
)
freedink_data='freedink-data-1.08.20190120'
files=( files=(
"https://ftpmirror.gnu.org/gnu/freedink/freedink-${version}.tar.gz 5e0b35ac8f46d7bb87e656efd5f9c7c2ac1a6c519a908fc5b581e52657981002" "https://ftpmirror.gnu.org/gnu/freedink/freedink-${version}.tar.gz 5e0b35ac8f46d7bb87e656efd5f9c7c2ac1a6c519a908fc5b581e52657981002"
"https://ftpmirror.gnu.org/gnu/freedink/${freedink_data}.tar.gz 715f44773b05b73a9ec9b62b0e152f3f281be1a1512fbaaa386176da94cffb9d" "https://ftpmirror.gnu.org/gnu/freedink/${freedink_data}.tar.gz 715f44773b05b73a9ec9b62b0e152f3f281be1a1512fbaaa386176da94cffb9d"
) )
configopts=("--prefix=/usr/local" "--disable-rpath" "--disable-tests" "LDFLAGS=-ldl -lfontconfig -lxml2") configopts=(
'--prefix=/usr/local'
'--disable-rpath'
'--disable-tests'
'LDFLAGS=-ldl -lfontconfig -lxml2'
)
launcher_name="FreeDink" launcher_name='FreeDink'
launcher_category=Games launcher_category='Games'
launcher_command='/usr/local/bin/freedink --software-rendering --truecolor' launcher_command='/usr/local/bin/freedink --software-rendering --truecolor'
icon_file='src/media/freedink.ico' icon_file='src/media/freedink.ico'