mirror of
https://github.com/RetroDECK/org.zdoom.GZDoom.git
synced 2024-11-27 16:15:39 +00:00
90f179795d
Some cargo-culting left us with more modules then strictly required
87 lines
2.5 KiB
YAML
87 lines
2.5 KiB
YAML
app-id: org.zdoom.GZDoom
|
|
runtime: org.freedesktop.Platform
|
|
sdk: org.freedesktop.Sdk
|
|
runtime-version: "19.08"
|
|
command: gzdoom.sh
|
|
|
|
finish-args:
|
|
- --device=dri
|
|
- --socket=wayland
|
|
- --socket=fallback-x11
|
|
- --socket=x11
|
|
- --share=ipc
|
|
- --share=network
|
|
- --socket=pulseaudio
|
|
|
|
# Based on GZDoom
|
|
# We access the original ~/.config/gzdoom because
|
|
# that is where users will most likely have their iwads
|
|
- --env=DOOMWADDIR=/app/share/games/doom
|
|
- --persist=.config/gzdoom
|
|
|
|
cleanup:
|
|
- /app/include
|
|
- /app/lib/*.a
|
|
- /app/lib/*.la
|
|
- /app/lib/pkgconfig
|
|
|
|
modules:
|
|
|
|
- name: fluidsynth
|
|
buildsystem: cmake-ninja
|
|
config-opts:
|
|
- -DCMAKE_BUILD_TYPE=RelWithDebInfo
|
|
- -DLIB_SUFFIX=
|
|
sources:
|
|
- type: archive
|
|
url: https://github.com/FluidSynth/fluidsynth/archive/v1.1.11.tar.gz
|
|
sha256: da8878ff374d12392eecf87e96bad8711b8e76a154c25a571dd8614d1af80de8
|
|
|
|
# This builds both the application code and
|
|
# the custom game data
|
|
- name: gzdoom
|
|
buildsystem: cmake-ninja
|
|
config-opts:
|
|
- -DCMAKE_BUILD_TYPE=RelWithDebInfo
|
|
# Required when targeting 32-bit x86
|
|
# Required for 19.08 using GCC C++ 9.2
|
|
- -DCMAKE_CXX_FLAGS=-msse3 -lrt
|
|
sources:
|
|
- type: git
|
|
url: https://github.com/coelckers/gzdoom.git
|
|
tag: g4.2.3
|
|
commit: d5ff2746be69636ed17c197877407ee2ad12b8f7
|
|
- type: file
|
|
url: https://github.com/coelckers/gzdoom/raw/g4.2.1/soundfont/gzdoom.sf2
|
|
sha256: fca3e514b635a21789d4224e84865d2954a2a914d46b64aa8219ddb565c44869
|
|
- type: patch
|
|
path: description.patch
|
|
- type: shell
|
|
commands:
|
|
- install -Dm 644 gzdoom.sf2 /app/share/sounds/sf2/gzdoom.sf2
|
|
|
|
- name: launcher
|
|
buildsystem: simple
|
|
sources:
|
|
- type: script
|
|
commands:
|
|
- gzdoom +fluid_patchset /app/share/sounds/sf2/gzdoom.sf2 -file lights.pk3 brightmaps.pk3 "$@"
|
|
dest-filename: gzdoom.sh
|
|
- type: file
|
|
path: org.zdoom.GZDoom.desktop
|
|
- type: file
|
|
path: org.zdoom.GZDoom.appdata.xml
|
|
- type: file
|
|
path: org.zdoom.GZDoom.48.png
|
|
- type: file
|
|
path: org.zdoom.GZDoom.64.png
|
|
- type: file
|
|
path: org.zdoom.GZDoom.128.png
|
|
build-commands:
|
|
- install -D gzdoom.sh /app/bin/gzdoom.sh
|
|
- install -Dm 644 org.zdoom.GZDoom.desktop -t /app/share/applications
|
|
- install -Dm 644 org.zdoom.GZDoom.appdata.xml -t /app/share/metainfo
|
|
- install -Dm 644 org.zdoom.GZDoom.48.png /app/share/icons/hicolor/48x48/apps/org.zdoom.GZDoom.png
|
|
- install -Dm 644 org.zdoom.GZDoom.64.png /app/share/icons/hicolor/64x64/apps/org.zdoom.GZDoom.png
|
|
- install -Dm 644 org.zdoom.GZDoom.128.png /app/share/icons/hicolor/128x128/apps/org.zdoom.GZDoom.png
|