coreutilsのリポジトリ

GNUのGitへの移行が進んでいるみたいです。coreutilsもGitで管理されていました。(Savannah Git Hosting - coreutils.git/summary)

さっそくcloneしてみました。

$ git clone git://git.sv.gnu.org/coreutils.git

Makefileが無いので、autoconf, automakeしてMakefileを作る必要があるみたいです。Homebrewでautoconf, automakeをインストールして、autoconfを実行。上手くいかず・・・

ファイルをザッと見てみると、「bootstrap」というファイルがあり、それっぽいので、実行してみると、現状下記のような状況。

$ ./bootstrap

./bootstrap: Error: 'autopoint' not found

./bootstrap: Error: 'gettext' not found

./bootstrap: Error: 'makeinfo' version == 4.8 is too old

./bootstrap: 'makeinfo' version >= 4.13 is required

./bootstrap: Error: 'xz' not found

./bootstrap: See README-prereq for how to get the prerequisite programs

autopointと、xzは見覚えがないコマンド。gettextは入っているはずなんだけどなぁ。README-prereqというファイルを眺めてみるか・・・