Package Details: execline-man-pages-git v2.8.0.0.1.r0.7fce6a4-1

Git Clone URL: https://aur.archlinux.org/execline-man-pages-git.git (read-only, click to copy)
Package Base: execline-man-pages-git
Description: Manual pages for the execline suite of software
Upstream URL: https://github.com/flexibeast/execline-man-pages
Licenses: ISC
Conflicts: execline-man-pages
Provides: execline-man-pages
Submitter: kiankasad
Maintainer: None
Last Packager: kiankasad
Votes: 1
Popularity: 0.000000
First Submitted: 2021-02-14 21:48 (UTC)
Last Updated: 2021-02-16 19:56 (UTC)

Dependencies (1)

Required by (0)

Sources (1)

Latest Comments

kiankasad commented on 2024-04-22 22:39 (UTC)

Thanks for the suggested fixes. I no longer use Arch Linux, so I'm disowning the package. Feel free to take it over and apply your changes.

sforka commented on 2024-04-22 18:36 (UTC)

This package can no longer be installed, the install command complains about permission errors. Here's a diff that fixes it:

diff --git a/PKGBUILD b/PKGBUILD
index efeabf0..9d59700 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -21,6 +21,7 @@ pkgver() {

 package() {
    cd "$srcdir/${pkgname%-git}"
-   make MANPATH="$pkgdir/usr/share/man" install
+   install -d -m 0755 "$pkgdir/usr/share/man/man{1,7}"
+   make DESTDIR="$pkgdir" PREFIX=/usr install
    install -Dm0644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
 }

I also tried to update the upstream url to sr.ht but it complains about a non-existent make-pkg branch.

dallin commented on 2023-04-13 19:15 (UTC)

The URL for these manpages is now at https://git.sr.ht/~flexibeast/execline-man-pages Additionally, the relevant variable is now MAN_DIR instead of MANPATH.