mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 13:07:46 +00:00
Ports: Make array-like settings actual arrays
We may need entries with spaces in makeopts, installopts, and configopts, and at that point we should also convert depends and auth_opts to avoid confusion.
This commit is contained in:
parent
e507cfcdb0
commit
c07f91474d
149 changed files with 352 additions and 345 deletions
|
@ -1,11 +1,11 @@
|
|||
#!/usr/bin/env -S bash ../.port_include.sh
|
||||
port=brogue
|
||||
depends="SDL2 SDL2_image"
|
||||
depends=("SDL2" "SDL2_image")
|
||||
version=1.9.3
|
||||
workdir="BrogueCE-${version}"
|
||||
files="https://github.com/tmewett/BrogueCE/archive/refs/tags/v${version}.tar.gz brogue.tar.gz 441182916a16114bedfee614b09a198b4877a25db2544c5e087c86038aae2452"
|
||||
auth_type=sha256
|
||||
makeopts="bin/brogue"
|
||||
makeopts=("bin/brogue")
|
||||
|
||||
install() {
|
||||
datadir="$SERENITY_INSTALL_ROOT/usr/local/share/games/brogue/assets"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue