Package Details: multimc5 0.6.16-3

Git Clone URL: https://aur.archlinux.org/multimc5.git (read-only, click to copy)
Package Base: multimc5
Description: Minecraft launcher with ability to manage multiple instances.
Upstream URL: https://multimc.org/
Keywords: launcher minecraft
Licenses: Apache
Conflicts: multimc
Provides: multimc
Submitter: vorpalblade
Maintainer: None
Last Packager: g3tchoo
Votes: 128
Popularity: 0.031014
First Submitted: 2015-06-06 11:37 (UTC)
Last Updated: 2023-02-06 06:15 (UTC)

Dependencies (9)

Required by (1)

Sources (8)

Pinned Comments

g3tchoo commented on 2023-02-06 04:26 (UTC) (edited on 2023-02-06 04:45 (UTC) by g3tchoo)

multimc is no longer using stable releases, which obsoletes this package (see this commit)

please consider switching to prismlauncher for continued support. you can find a migration guide here

edit: multimc-git was previously recommended, but has not been updated for more than a year and does not build off develop currently, so it has been removed. multimc-bin may also not be viable for the same reasons as this package, so the only alternative i am comfortable recommending is prismlauncher.

g3tchoo commented on 2021-12-18 18:53 (UTC) (edited on 2021-12-18 18:53 (UTC) by g3tchoo)

Leaving this as a permanent disclaimer:

It is illegal to redistribute any binaries created with this script because of the upstream project's licensing.

Latest Comments

« First ‹ Previous 1 .. 7 8 9 10 11 12 13 14 15 16 17 .. 20 Next › Last »

Wennadocta commented on 2020-04-04 21:55 (UTC)

@xiretza thanks, I set java to openjdk 8 and everything works nice now

xiretza commented on 2020-04-04 11:06 (UTC)

@Wennadocta: first off, it builds fine in a clean chroot, which is the only setup that can be supported reasonably - AUR helpers in particular are completely out of scope, I suggest you at least use makepkg before reporting any package bugs in the future. Also, did you read the pinned comment? I think it might solve your problem.

Wennadocta commented on 2020-04-04 10:58 (UTC) (edited on 2020-04-04 10:58 (UTC) by Wennadocta)

Last version doesn't compile

/home/ayanami/.cache/yay/multimc5/src/MultiMC5-0.6.11/cmake
CMake Error at libraries/launcher/CMakeLists.txt:2 (project):
  No CMAKE_Java_COMPILER could be found.

  Tell CMake where to find the compiler by setting either the environment
  variable "JAVA_COMPILER" or the CMake cache entry CMAKE_Java_COMPILER to
  the full path to the compiler, or to the compiler name if it is in the
  PATH.


-- Configuring incomplete, errors occurred!
See also "/home/ayanami/.cache/yay/multimc5/src/MultiMC5-0.6.11/build/CMakeFiles/CMakeOutput.log".
==> ERROR: A failure occurred in build().
    Aborting...
Error making: multimc5

sunflsks commented on 2020-03-31 15:02 (UTC)

@xirertza Yeah, that did the trick. Turned out I was using jdk 13, switched to version 8 and it worked like a charm.

xiretza commented on 2020-03-30 20:28 (UTC) (edited on 2020-03-30 20:30 (UTC) by xiretza)

@sybsfksks: "doesn't work" is about the least helpful error report possible. I just created a 1.10 instance, then installed forge 12.18.0.2000 from the "Version" menu of the instance, and it launches just fine using Java 8.

Edit: just saw you added a stack trace - the full log would probably show that the java version you're using is too new.

sunflsks commented on 2020-03-30 20:22 (UTC) (edited on 2020-03-30 20:25 (UTC) by sunflsks)

On the latest version, any version below 1.12.2 with forge doesn't work for some reason. Here's the full error: https://pastebin.com/nKCM7tjJ

xiretza commented on 2020-02-03 17:38 (UTC)

@mcmacker4: please use MAKEFLAGS= in makepkg.conf for this, that way it applies to all packages you build and package maintainers don't have to implement it separately for every package.

mcmacker4 commented on 2020-02-03 17:36 (UTC)

Since the whole program is built locally and there is quite a lot of files to build, may i suggest adding the jobs flag to the make command in the build() function of PKGBUILD like so:

make -j $(nproc)

This will allow make to build files in parallel using as many threads as cores the computer has (as reported by the nproc command). By adding this flag (on my 4 core machine) the build time was reduced from 8m36s down to 2m52s.