仍在编辑!

仍在编辑!

我想安装pinfo在我的 Mac 上阅读信息文件,而不是使用难看的哥哥info

pinfo不是然而由...提供自制。也许很快就会了,到时候我就能得到这个问题的答案了。(这里相关问题,在 GitHub 上。)

该项目网站如下:这里.
源代码这里

当我尝试编译它时,运行时./autogen.sh我收到以下错误消息:

atcold@AlfMAC ~/Work/Sandbox/pinfo-0.6.10 $ ./autogen.sh 
Cleaning autotools files...
find: illegal option -- t
usage: find [-H | -L | -P] [-EXdsx] [-f path] path ... [expression]
       find [-H | -L | -P] [-EXdsx] -f path [path ...] [expression]
find: illegal option -- t
usage: find [-H | -L | -P] [-EXdsx] [-f path] path ... [expression]
       find [-H | -L | -P] [-EXdsx] -f path [path ...] [expression]
Running autoreconf...
Can't exec "autopoint": No such file or directory at /usr/local/Cellar/autoconf/2.69/share/autoconf/Autom4te/FileUtils.pm line 345.
autoreconf: failed to run autopoint: No such file or directory
autoreconf: autopoint is needed because this package uses Gettext
Something is bad with find's parameters (no big deal, I guess),
autopoint is missing, and brew doesn't know anything about it.
  1. find 的参数有问题(我想没什么大不了的),
  2. autopoint失踪了,并且brew对此一无所知。

我也知道有pinfo可能麦波特,所以如果需要的话,有一个地方可以获取灵感(目前还不确定如何到达那里)。
当我尝试查看 trac.macports.org 时,我得到了403 Forbidden答案 :(
这里几乎是麦克波特的包裹pinfo,但我无法进一步了解。

仍在编辑!

我正在 GitHub 上更新这个问题,这里。我稍后也会更新这个问题。

答案1

我想人们可能已经知道了,但是pinfo现在可以从以下网址获得brew

brew install pinfo

autopoint如果你对在 MacOS/X 上获取它感到好奇- 它可以通过gettextbrew 公式获得 - 问题是它是 keg-only,这意味着它默认不符号链接到 /usr/local,因为它可能与 MacOS 的内部版本冲突,但是 MacOS 不提供,autopoint因此可以按如下方式获取它 - 安装gettext

brew install gettext

然后符号链接autopoint到 /usr/local/bin:

ln -s `brew ls gettext | grep bin/autopoint` /usr/local/bin  

相关内容