diff options
-rw-r--r-- | Ports/AvailablePorts.md | 2 | ||||
-rwxr-xr-x | Ports/brogue/package.sh | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/Ports/AvailablePorts.md b/Ports/AvailablePorts.md index ddb02fb46e..7df5062363 100644 --- a/Ports/AvailablePorts.md +++ b/Ports/AvailablePorts.md @@ -14,7 +14,7 @@ Please make sure to keep this list up to date when adding and updating ports. :^ | [`binutils`](binutils/) | GNU Binutils | 2.38 | https://www.gnu.org/software/binutils/ | | [`bison`](bison/) | GNU Bison | 1.25 | https://www.gnu.org/software/bison/ | | [`bochs`](bochs/) | Bochs x86 PC emulator | 2.7 | https://sourceforge.net/projects/bochs/ | -| [`brogue`](brogue/) | BrogueCE | 1.9.3 | https://github.com/tmewett/BrogueCE | +| [`brogue`](brogue/) | BrogueCE | 1.10.1 | https://github.com/tmewett/BrogueCE | | [`byacc`](byacc/) | Berkeley Yacc | 20210808 | https://invisible-island.net/byacc/byacc.html | | [`bzip2`](bzip2/) | bzip2 | 1.0.8 | https://sourceware.org/bzip2/ | | [`ca-certificates`](ca-certificates/) | Mozilla CA certificate store | 2022-02-01 | https://curl.se/docs/caextract.html | diff --git a/Ports/brogue/package.sh b/Ports/brogue/package.sh index 1cff670fe2..18edb02705 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") -version=1.9.3 +version=1.10.1 workdir="BrogueCE-${version}" -files="https://github.com/tmewett/BrogueCE/archive/refs/tags/v${version}.tar.gz brogue.tar.gz 441182916a16114bedfee614b09a198b4877a25db2544c5e087c86038aae2452" +files="https://github.com/tmewett/BrogueCE/archive/refs/tags/v${version}.tar.gz brogue-${version}.tar.gz 3e0425b3f1b59afe98a92c0282aa4dd7e8964b53f7cab969fcf437701a04c5fa" auth_type=sha256 -makeopts=("bin/brogue") +makeopts+=("bin/brogue") install() { datadir="$SERENITY_INSTALL_ROOT/usr/local/share/games/brogue/assets" |