Broken
Search Criteria
Package Details: apx-git 2.0.0.r54.gd2c156a-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/apx-git.git (read-only, click to copy) |
---|---|
Package Base: | apx-git |
Description: | Vanilla OS package manager |
Upstream URL: | https://github.com/Vanilla-OS/apx |
Licenses: | GPL3 |
Conflicts: | apx |
Provides: | apx |
Submitter: | jim3692 |
Maintainer: | random-tm |
Last Packager: | random-tm |
Votes: | 0 |
Popularity: | 0.000000 |
First Submitted: | 2023-01-07 21:06 (UTC) |
Last Updated: | 2023-08-30 02:58 (UTC) |
Dependencies (5)
- distrobox (distrobox-gitAUR)
- docker (rancher-desktop-gitAUR, docker-gitAUR, podman-docker-gitAUR, rancher-desktopAUR, docker-cli-binAUR, podman-docker)
- git (git-gitAUR, git-glAUR)
- pacman (pacman-gitAUR, pacman-stable-fancy-progressAUR)
- go (go-gitAUR, gcc-go-gitAUR, gcc-go-snapshotAUR, gcc-go) (make)
Required by (1)
- apx-gui (requires apx)
Sources (2)
Latest Comments
Kamek commented on 2024-09-22 03:38 (UTC)
D3vil0p3r commented on 2023-05-31 20:24 (UTC)
The package installation returns:
==> Starting package()...
install: cannot stat '/home/myuser/apx-git/src/apx/man/apx.1': No such file or directory
==> ERROR: A failure occurred in package().
Aborting...
Please fix it.
random-tm commented on 2023-03-12 17:51 (UTC) (edited on 2023-03-12 17:55 (UTC) by random-tm)
It would appear the paths for the man pages have changed, they were moved into a sub-directory named man1; these lines need changed on the PKGBUILD for the package to build:
package() {
install -Dm755 "$srcdir/$_pkgname/apx" "$pkgdir/usr/bin/apx"
- install -Dm644 "$srcdir/$_pkgname/man/apx.1" "$pkgdir/usr/share/man/man1/apx.1"
- install -Dm644 "$srcdir/$_pkgname/man/es/apx.1" "$pkgdir/usr/share/man/es/man1/apx.1"
+ install -Dm644 "$srcdir/$_pkgname/man/man1/apx.1" "$pkgdir/usr/share/man/man1/apx.1"
+ install -Dm644 "$srcdir/$_pkgname/man/es/man1/apx.1" "$pkgdir/usr/share/man/es/man1/apx.1"
install -Dm644 "$srcdir/config.json" "$pkgdir/etc/apx/config.json"
}
I'm not aware of any side-effects from doing this, but I am still seeing the man pages on my system after installing the most recent build.
jim3692 commented on 2023-01-08 00:31 (UTC) (edited on 2023-01-08 00:43 (UTC) by jim3692)
On many xorg environments, GUI apps may not run. The solution is to run xhost +local:$(whoami)
before starting any GUI app.
For more details check Step 3 at distrobox's instructions: https://github.com/89luca89/distrobox/blob/795ad7927fa795aff1bcf25272ffacb08c5a0228/docs/posts/install_rootless.md
There is also an open discussion about running distrobox apps in nested X environments: https://github.com/89luca89/distrobox/issues/579
Pinned Comments
jim3692 commented on 2023-01-08 00:31 (UTC) (edited on 2023-01-08 00:43 (UTC) by jim3692)
On many xorg environments, GUI apps may not run. The solution is to run
xhost +local:$(whoami)
before starting any GUI app.For more details check Step 3 at distrobox's instructions: https://github.com/89luca89/distrobox/blob/795ad7927fa795aff1bcf25272ffacb08c5a0228/docs/posts/install_rootless.md
There is also an open discussion about running distrobox apps in nested X environments: https://github.com/89luca89/distrobox/issues/579