mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
Ports: Format freeciv's package script
This formats freeciv's package script according to our ruleset.
This commit is contained in:
parent
d4734e920c
commit
df0890a1fb
Notes:
sideshowbarker
2024-07-17 05:41:34 +09:00
Author: https://github.com/kennethmyhra Commit: https://github.com/SerenityOS/serenity/commit/df0890a1fb Pull-request: https://github.com/SerenityOS/serenity/pull/23882 Reviewed-by: https://github.com/timschumi ✅
1 changed files with 26 additions and 10 deletions
|
@ -1,15 +1,31 @@
|
|||
#!/usr/bin/env -S bash ../.port_include.sh
|
||||
port=freeciv
|
||||
version=3.0.8
|
||||
useconfigure=true
|
||||
use_fresh_config_sub=true
|
||||
config_sub_paths=("bootstrap/config.sub")
|
||||
configopts=("--enable-client=sdl2" "--enable-fcmp=no")
|
||||
port='freeciv'
|
||||
version='3.0.8'
|
||||
useconfigure='true'
|
||||
use_fresh_config_sub='true'
|
||||
config_sub_paths=(
|
||||
'bootstrap/config.sub'
|
||||
)
|
||||
configopts=(
|
||||
'--enable-client=sdl2'
|
||||
'--enable-fcmp=no'
|
||||
)
|
||||
files=(
|
||||
"http://files.freeciv.org/stable/freeciv-${version}.tar.xz#3b5aa32f628890be1741c3ac942cee82c79c065f8db6baff18d734a5c0e776d4"
|
||||
)
|
||||
depends=("SDL2" "SDL2_image" "SDL2_mixer" "SDL2_ttf" "SDL2_gfx" "zstd" "libicu" "xz" "gettext" "curl")
|
||||
launcher_name=Freeciv
|
||||
depends=(
|
||||
'curl'
|
||||
'gettext'
|
||||
'libicu'
|
||||
'SDL2'
|
||||
'SDL2_gfx'
|
||||
'SDL2_image'
|
||||
'SDL2_mixer'
|
||||
'SDL2_ttf'
|
||||
'zstd'
|
||||
'xz'
|
||||
)
|
||||
launcher_name='Freeciv'
|
||||
launcher_category='&Games'
|
||||
launcher_command=/usr/local/bin/freeciv-sdl2
|
||||
icon_file=windows/client.ico
|
||||
launcher_command='/usr/local/bin/freeciv-sdl2'
|
||||
icon_file='windows/client.ico'
|
||||
|
|
Loading…
Reference in a new issue