Package Details: openrct2-git 0.4.4.r18.g1174063c27-1

Git Clone URL: https://aur.archlinux.org/openrct2-git.git (read-only, click to copy)
Package Base: openrct2-git
Description: Open source re-implementation of Roller Coaster Tycoon 2 (requires full copy of the game)
Upstream URL: https://openrct2.io
Licenses: GPL3
Conflicts: openrct2
Provides: openrct2
Submitter: grahamedgecombe
Maintainer: rctdude2
Last Packager: rctdude2
Votes: 30
Popularity: 0.006046
First Submitted: 2014-05-27 09:56 (UTC)
Last Updated: 2023-04-01 20:12 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 8 9 .. 14 Next › Last »

slurpee commented on 2020-05-19 09:04 (UTC)

Building OpenRCT2 now requires the duktape Community repo package.

https://github.com/OpenRCT2/OpenRCT2/wiki/Building-OpenRCT2-on-Linux/_compare/5deb31e4ff70d3a984368a47d9913cd88ecfa22c...b52bac71e819baa0bb85fb3a001bd2b5e9e6183d#diff-5f705bbc95ee85e0d8c0bc5a3a6766f7R44

slurpee commented on 2019-10-19 03:24 (UTC)

I've noticed in some cases that the symlink to the system's rapidjson can sometimes not clean up correctly, causing the build to fail in the prepare step trying to make another symlink. I've added a guard around the ln so that it'll only create it if it doesn't exist. Thought it might help, let me know what you think!

diff --git a/PKGBUILD b/PKGBUILD
index 18bb5dc..ecb271f 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -31,7 +31,9 @@ prepare() {
   cd "$srcdir/$pkgname"
   ln -sf "$srcdir/discord-rpc" discord-rpc
   mkdir -p discord-rpc/thirdparty
-  ln -sf "/usr/include/rapidjson" discord-rpc/thirdparty/rapidjson
+  if [[ ! -L "$srcdir/discord-rpc/thirdparty/rapidjson" ]]; then
+    ln -sf "/usr/include/rapidjson" discord-rpc/thirdparty/rapidjson
+  fi
 }

 build() {

Thaodan commented on 2019-01-07 05:23 (UTC)

Could you base the pkgver on latest tag + commits since then?

janisozaur commented on 2018-11-03 23:05 (UTC)

That would most likely need to be supported in our cmakelists.txt, I have only added support for building discord-rpc from source. Feel free to file an issue for that, or better yet, submit a PR.

Thaodan commented on 2018-11-03 23:02 (UTC)

thanks. Discord-rpc is also shared and maybe possible as an optdepend.

grahamedgecombe commented on 2018-10-31 19:12 (UTC)

@JudgeManganese: I haven't managed to reproduce that, including when building inside a fresh chroot.

@Thaodan: sure, done.

Thaodan commented on 2018-10-31 09:46 (UTC)

Can we build with distro rapidjson instead of the shared one?

JudgeManganese commented on 2018-09-29 20:33 (UTC)

The objects/title sequences that CMake downloads as part of package() are now causing the PKGBUILD to fail with the below error. CMake is showing the hash for an empty file because the file wasn't downloaded. It seems makepkg is not allowing CMake to download because I can manually run the commands in package() and they get downloaded.

CMake Error at cmake_install.cmake:48 (file):
  file DOWNLOAD HASH mismatch

    for file: [<path-to-cache>/openrct2-git/pkg/openrct2-git/usr/share/openrct2/title/title-sequences.zip]
      expected hash: [1136ef92bfb05cd1cba9831ba6dc4a653d87a246]
        actual hash: [da39a3ee5e6b4b0d3255bfef95601890afd80709]
             status: [6;"Couldn't resolve host name"]

grahamedgecombe commented on 2018-06-12 20:24 (UTC)

hmm, it's maybe not so simple - I think the tests might expect those files to be in /, rather than inside $DESTDIR...

maybe it's easiest just to disable the tests for now.