Package Details: stow-git 20180211-1

Git Clone URL: https://aur.archlinux.org/stow-git.git (read-only, click to copy)
Package Base: stow-git
Description: Manage installation of multiple softwares in the same directory tree, git version
Upstream URL: http://www.gnu.org/software/stow/
Licenses: GPL2
Conflicts: stow
Provides: stow
Submitter: rasphino
Maintainer: rasphino
Last Packager: rasphino
Votes: 0
Popularity: 0.000000
First Submitted: 2019-02-05 14:44 (UTC)
Last Updated: 2019-02-05 14:44 (UTC)

Dependencies (7)

Required by (3)

Sources (1)

Latest Comments

Hemular commented on 2021-06-01 00:59 (UTC)

Ran into this error:

...
/bin/sh: line 1: pod2man: command not found
make: *** [Makefile:1560: doc/stow.8] Error 127
==> ERROR: A failure occurred in build().
    Aborting...

This can be fixed by adding /usr/bin/core_perl to PATH. See Arch BBS discussion: https://bbs.archlinux.org/viewtopic.php?id=120256

diff --git a/PKGBUILD b/PKGBUILD
index 9e68e7e..5b184b1 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -27,6 +27,7 @@ pkgver() {

 prepare() {
   cd "${srcdir}/${_gitname}"
+  export PATH=${PATH}:/usr/bin/core_perl
   autoreconf -iv
 }