mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 06:42:08 +00:00
- add recipe files for appimagebuilder
This commit is contained in:
parent
7d16452a3f
commit
f4dc16b27a
2 changed files with 48 additions and 0 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -22,6 +22,9 @@
|
||||||
.vscode
|
.vscode
|
||||||
/src/gl/unused
|
/src/gl/unused
|
||||||
/mapfiles_release/*.map
|
/mapfiles_release/*.map
|
||||||
|
/AppDir
|
||||||
|
/appimage-build
|
||||||
|
*.AppImage
|
||||||
.DS_Store
|
.DS_Store
|
||||||
/build_vc2017-32
|
/build_vc2017-32
|
||||||
/build2
|
/build2
|
||||||
|
|
45
AppImageBuilder.yml
Normal file
45
AppImageBuilder.yml
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
# appimage-builder recipe see https://appimage-builder.readthedocs.io for details
|
||||||
|
version: 1
|
||||||
|
AppDir:
|
||||||
|
path: ./AppDir
|
||||||
|
app_info:
|
||||||
|
id: com.GZDoom.app
|
||||||
|
name: GZDoom
|
||||||
|
icon: game_icon.png
|
||||||
|
version: latest
|
||||||
|
exec: ./gzdoom
|
||||||
|
exec_args: $@
|
||||||
|
apt:
|
||||||
|
arch: amd64
|
||||||
|
allow_unauthenticated: true
|
||||||
|
sources:
|
||||||
|
- sourceline: deb http://us.archive.ubuntu.com/ubuntu/ jammy main restricted
|
||||||
|
- sourceline: deb http://us.archive.ubuntu.com/ubuntu/ jammy-updates main restricted
|
||||||
|
include: []
|
||||||
|
files:
|
||||||
|
include: []
|
||||||
|
exclude:
|
||||||
|
- usr/share/man
|
||||||
|
- usr/share/doc/*/README.*
|
||||||
|
- usr/share/doc/*/changelog.*
|
||||||
|
- usr/share/doc/*/NEWS.*
|
||||||
|
- usr/share/doc/*/TODO.*
|
||||||
|
test:
|
||||||
|
fedora-30:
|
||||||
|
image: appimagecrafters/tests-env:fedora-30
|
||||||
|
command: ./AppRun
|
||||||
|
debian-stable:
|
||||||
|
image: appimagecrafters/tests-env:debian-stable
|
||||||
|
command: ./AppRun
|
||||||
|
archlinux-latest:
|
||||||
|
image: appimagecrafters/tests-env:archlinux-latest
|
||||||
|
command: ./AppRun
|
||||||
|
centos-7:
|
||||||
|
image: appimagecrafters/tests-env:centos-7
|
||||||
|
command: ./AppRun
|
||||||
|
ubuntu-xenial:
|
||||||
|
image: appimagecrafters/tests-env:ubuntu-xenial
|
||||||
|
command: ./AppRun
|
||||||
|
AppImage:
|
||||||
|
arch: x86_64
|
||||||
|
update-information: guess
|
Loading…
Reference in a new issue