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.
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