Package Details: appimagelauncher-git r1251.71e8e32-1

Git Clone URL: https://aur.archlinux.org/appimagelauncher-git.git (read-only, click to copy)
Package Base: appimagelauncher-git
Description: A Helper application for running and integrating AppImages.
Upstream URL: https://assassinate-you.net/tags/appimagelauncher/
Keywords: appimage
Licenses: MIT
Conflicts: appimagelauncher
Provides: appimagelauncher
Submitter: AJSlye
Maintainer: FabioLolix
Last Packager: FabioLolix
Votes: 4
Popularity: 0.000001
First Submitted: 2018-04-24 14:08 (UTC)
Last Updated: 2023-06-11 07:52 (UTC)

Pinned Comments

FabioLolix commented on 2023-11-29 22:43 (UTC)

There is an issue open since June https://github.com/TheAssassin/AppImageLauncher/issues/574


I would recommend to use a VM of a base arch install and check what dependencies are missing using that.

We have devtools for building in a clean chroot https://wiki.archlinux.org/title/DeveloperWiki:Building_in_a_clean_chroot, typically I do both a clean build and a dirty build but the program is broken now

Latest Comments

« First ‹ Previous 1 2 3 4 5 Next › Last »

bitterhalt commented on 2022-05-12 11:21 (UTC)

Getting this error:

/usr/bin/ld: /usr/lib/libappimage.so.1.0.3: undefined reference to `std::__glibcxx_assert_fail(char const, int, char const, char const)@GLIBCXX_3.4.30' collect2: error: ld returned 1 exit status make[2]: [src/daemon/CMakeFiles/appimagelauncherd.dir/build.make:168: src/daemon/appimagelauncherd] Error 1 make[1]: [CMakeFiles/Makefile2:1573: src/daemon/CMakeFiles/appimagelauncherd.dir/all] Error 2 make: ** [Makefile:156: all] Error 2 ==> ERROR: A failure occurred in build(). Aborting... -> error making: appimagelauncher-git

realkstrawn93 commented on 2022-03-18 23:19 (UTC)

Might want to pull in lib32-glibc, lib32-gcc-libs, and lib32-fakeroot as dependencies. Fails to compile otherwise.

yochananmarqos commented on 2019-10-18 17:15 (UTC)

Please add a provides() and conflicts() array.

FabioLolix commented on 2019-10-10 15:56 (UTC)

@nipsky that is an issue with unityhub package

nipsky commented on 2019-10-10 08:16 (UTC)

Hi, I’m getting:

QStandardPaths: wrong ownership on runtime directory /run/user/1000, 1000 instead of 0

(process:1063929): Gtk-WARNING **: 10:13:03.054: Locale not supported by C library.
    Using the fallback 'C' locale.

(AppImageLauncher:1063929): dbind-WARNING **: 10:13:03.090: Couldn't register with accessibility bus: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.
Failed to connect to bus: Operation not permitted
Failed to connect to bus: Operation not permitted
Failed to create /root/.cache for shader cache (Permission denied)---disabling.
==> ERROR: A failure occurred in package().
    Aborting...
Error making: unityhub

Pant commented on 2019-09-25 19:24 (UTC)

Replace the function build() with the following:

build() {
  cd "$srcdir/$_pkgname"
  cmake . \
        -DCMAKE_INSTALL_PREFIX=/usr/ \
        -DCMAKE_INSTALL_LIBDIR=lib \
        -DUSE_SYSTEM_GTEST=ON \
        -DUSE_SYSTEM_XZ=ON \
        -DUSE_SYSTEM_LIBARCHIVE=ON \
        -DBUILD_TESTING=OFF
  make -j $(nproc) libappimage libappimageupdate libappimageupdate-qt
  cmake .
  make -j 8
}