Package Details: srb2kart-moe-mansion-git r7384.4849fb5c-1

Git Clone URL: https://aur.archlinux.org/srb2kart-moe-mansion-git.git (read-only, click to copy)
Package Base: srb2kart-moe-mansion-git
Description: A rolling release/nightly version of srb2kart 1.3 based on birdhouse with a couple other changes.
Upstream URL: https://mb.srb2.org/threads/srb2kart-1-3-moe-mansion.29473/
Licenses: GPL2
Conflicts: srb2kart-moe-mansion
Submitter: second2050
Maintainer: second2050
Last Packager: second2050
Votes: 1
Popularity: 0.000001
First Submitted: 2021-08-28 21:19 (UTC)
Last Updated: 2022-05-28 22:40 (UTC)

Pinned Comments

second2050 commented on 2022-09-10 10:13 (UTC)

@eoinoneill this file is part of the package srb2kart-data which recently was updated to version 1.5 (because srb2kart itself got updated to 1.5) the moe-mansion fork itself is still based on 1.3 tho and needs version 1.3 of srb2kart-data

Latest Comments

second2050 commented on 2022-09-10 10:13 (UTC)

@eoinoneill this file is part of the package srb2kart-data which recently was updated to version 1.5 (because srb2kart itself got updated to 1.5) the moe-mansion fork itself is still based on 1.3 tho and needs version 1.3 of srb2kart-data

eoinoneill commented on 2022-09-09 03:31 (UTC)

I'm having a problem with this one, it's saying I'm missing patch.kart when trying to launch a fresh build.

Loading /usr/share/games/SRB2Kart/patch.kart
ERROR: Can't open patch.kart
Errors occurred while loading =U; not added.

Checking in that folder, it seems like it really is missing. Any reason why this wouldn't be included in the building process?

second2050 commented on 2022-05-28 22:40 (UTC)

@abisam thanks for telling me that discord-rpc-api doesn't exist anymore and was replaced. discord-rpc-git can't be an optional dependency because srb2kart will throw a: srb2kart-moe-mansion: error while loading shared libraries: libdiscord-rpc.so: cannot open shared object file: No such file or directory so I have set it to be a standard dependency.

I also still want to be able to disable the discord rpc integration via the envvars so I have changed the if statement in line 8 to:

if [ -z ${_use_discordrpc+x} ]; then
  # Automatically enable discord rpc integration if `discord-rpc-git` is installed
  if ( pacman -Q discord-rpc-git >/dev/null ); then
    _use_discordrpc=y
  else
    _use_discordrpc=n
  fi
fi

abisam commented on 2022-05-28 21:41 (UTC)

hey, could you please remove the if statements checking for _use_discordrpc, especially this one, since discord-rpc-api doesn't exist anymore:

if [ "${_use_discordrpc}" = "y" ]; then
  depends+=('discord-rpc-api')
fi

you should be able to replace them with these:

optdepends=('discord-rpc-git: discord rich presence support')
if (pacman -Q discord-rpc-git >/dev/null); then
 _buildflags+="HAVE_DISCORDRPC=1 "
fi