diff options
author | Tim Schumacher <timschumi@gmx.de> | 2021-09-27 00:16:18 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-10-05 02:13:08 +0200 |
commit | c07f91474de4088c4eccd45ccc6883a515439d69 (patch) | |
tree | 19bdb4797935e826f638053ea8d4250bd453dd0a /Ports/brogue | |
parent | e507cfcdb0cc3be9e8e3304952c81d4410e6b610 (diff) | |
download | serenity-c07f91474de4088c4eccd45ccc6883a515439d69.zip |
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.
Diffstat (limited to 'Ports/brogue')
-rwxr-xr-x | Ports/brogue/package.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Ports/brogue/package.sh b/Ports/brogue/package.sh index 553c393375..1cff670fe2 100755 --- a/Ports/brogue/package.sh +++ b/Ports/brogue/package.sh @@ -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" |