Package Details: ftb-app-bin 1.25.10-1

Git Clone URL: https://aur.archlinux.org/ftb-app-bin.git (read-only, click to copy)
Package Base: ftb-app-bin
Description: A new Modpack launcher for FTB and Curse modpacks.
Upstream URL: https://feed-the-beast.com/app
Keywords: feed-the-beast feedthebeast ftba ftbapp minecraft
Licenses: LGPL-2.1-only
Conflicts: ftb-app
Provides: ftb-app
Submitter: su226
Maintainer: su226
Last Packager: su226
Votes: 1
Popularity: 0.000000
First Submitted: 2024-04-22 12:14 (UTC)
Last Updated: 2024-05-23 14:09 (UTC)

Dependencies (4)

Required by (0)

Sources (2)

Pinned Comments

cobaltspace commented on 2021-11-24 01:05 (UTC)

Recommendation: In settings, set your custom arguments to include -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:G1NewSizePercent=20 -XX:G1ReservePercent=20 -XX:MaxGCPauseMillis=50 -XX:G1HeapRegionSize=32M.

cobaltspace commented on 2021-01-12 22:18 (UTC)

Be sure to set your java runtime to a jre8, either system wide (https://wiki.archlinux.org/index.php/Java#Switching_between_JVM), or just for FTBApp (https://github.com/FTBTeam/FTB-App/issues/264#issuecomment-700919667)

Latest Comments

« First ‹ Previous 1 2

willyb commented on 2020-12-16 05:14 (UTC)

PKGBUILD has more or less (pretty much all of it, really) been changed to the suggestions of @cobaltspace. Thanks. To users that already had the package installed, be sure to delete all (except instances) from ~/.local/share/FTBA. New users don't have to do anything.

cobaltspace commented on 2020-12-07 21:47 (UTC) (edited on 2020-12-07 21:47 (UTC) by cobaltspace)

There are many issues with this package:

This is my rough draft fix:

# Maintainer: William Brown <glowinthedarkcia at horsefucker dot org>
# Contributor: Cobalt Space <cobaltspace at protonmail dot com>
pkgname=ftba
pkgver=202011261605_2be2c6a678_release
pkgrel=3
arch=("any")
pkgdesc="Offers many different styles of Minecraft modpacks to the community."
source=("https://apps.modpacks.ch/FTBApp/release/${pkgver//_/-}/FTBA_linux_${pkgver//_/-}.deb" "ftbapp.desktop")
sha256sums=('647a46aad94840dddf35e110317cf0504061eadc553e8d84a1758c61bccf28ce'
            'd7dd2ecae636bce07af3df299003283fbeef49b2da13a28b1f34b19469f93b1d')
license=("LGPL2")
depends=("java-runtime=8" "java-runtime=11")

package() {
        tar -C $pkgdir -xf $srcdir/data.tar.gz
        mkdir -p $pkgdir/usr/{bin,/share/applications}
        cp "$srcdir/ftbapp.desktop" $pkgdir/usr/share/applications
        chmod +x $pkgdir/opt/FTBA/bin/ftb-app
        rm -r $pkgdir/opt/FTBA/{jre,bin/{ftbapp.app,{,**/}*.{exe,dll}}}
        ln -s ../../opt/FTBA/FTBApp $pkgdir/usr/bin
}

With these changes, users should remove ~/.local/share/FTBA. If user's instance directory is in there, they should remove everything but the instances.

Floppie commented on 2020-11-08 19:00 (UTC)

Edit the PKGBUILD before installing and change the last md5sum (0775efb989c973eb7a080e6dae2f9e8d) to caa125e287ab8287587aff53626db48a

The correct fix is that the actual committed PKGBUILD needs to be updated. ftbapp.desktop had a fix committed 9 days ago but the PKGBUILD was not updated with the new hash.

ahuston-0 commented on 2020-11-06 17:11 (UTC)

Does anyone have any fix for ftbapp.desktop not passing the validity check?

stevendoesstuffs commented on 2020-10-22 14:53 (UTC) (edited on 2020-10-22 15:02 (UTC) by stevendoesstuffs)

For me, the icon for the app is located at /opt/FTBA/.install4j/FTBApp.png, but the .desktop file links to /opt/FTBApp/.install4j/FTBApp.png. Also, please add StartupWMClass=ftb-app to the .desktop file, it fixes the issue where the open app doesn't have the proper icon.

lsevcik commented on 2020-08-22 23:49 (UTC)

No suitable Java Virtual Machine could be found on your system.
The version of the JVM must be at least 11.0.5 and at most 11.0.999.
Please define INSTALL4J_JAVA_HOME to point to a suitable JVM.

Based off of this, shouldn't the java-runtime dependency be java-runtime=11?