mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 00:47:45 +00:00
Ports: Add archive hash to Quake port
Also update the code style.
This commit is contained in:
parent
a27c9d8b05
commit
3b2a7135b2
1 changed files with 17 additions and 11 deletions
|
@ -1,12 +1,18 @@
|
||||||
#!/usr/bin/env -S bash ../.port_include.sh
|
#!/usr/bin/env -S bash ../.port_include.sh
|
||||||
port=quake
|
port='quake'
|
||||||
version=0.65
|
version='0.65'
|
||||||
workdir=SerenityQuake-master
|
workdir='SerenityQuake-master'
|
||||||
useconfigure=false
|
useconfigure='false'
|
||||||
files="https://github.com/SerenityPorts/SerenityQuake/archive/master.tar.gz quake.tar.gz"
|
archive_hash='81172c57839b3ec75bdc18d4ec4ec00a1460da84c596b4b8e5eb65a5a3a8309a'
|
||||||
makeopts+=("V=1" "SYMBOLS_ON=Y")
|
files="https://github.com/SerenityPorts/SerenityQuake/archive/master.tar.gz quake.tar.gz ${archive_hash}"
|
||||||
depends=("SDL2")
|
makeopts+=(
|
||||||
launcher_name=Quake
|
'V=1'
|
||||||
launcher_category=Games
|
'SYMBOLS_ON=Y'
|
||||||
launcher_command=/bin/quake
|
)
|
||||||
icon_file=quake.png
|
depends=(
|
||||||
|
'SDL2'
|
||||||
|
)
|
||||||
|
launcher_name='Quake'
|
||||||
|
launcher_category='Games'
|
||||||
|
launcher_command='/bin/quake'
|
||||||
|
icon_file='quake.png'
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue