blob: b65b47c42b2efc2ada66e2273c5a424377b6d2e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
require 'formula'
class Coreutils < Formula
homepage 'http://www.gnu.org/software/coreutils'
url 'http://ftpmirror.gnu.org/coreutils/coreutils-8.19.tar.xz'
mirror 'http://ftp.gnu.org/gnu/coreutils/coreutils-8.19.tar.xz'
sha256 'ad3873183fd8cfc7672b3ba54644672e59352f9b2dc7e3ad251c1174dde8a9e7'
depends_on 'xz' => :build
def install
system "./configure", "--prefix=#{prefix}", "--program-prefix=g"
system "make install"
# Symlink all commands into libexec/gnubin without the 'g' prefix
coreutils_bins.each do |cmd|
(libexec/'gnubin').install_symlink bin/"g#{cmd}" => cmd
end
end
def caveats; <<-EOS.undent
All commands have been installed with the prefix 'g'.
If you really need to use these commands with their normal names, you
can add a "gnubin" directory to your PATH from your bashrc like:
PATH="$(brew --prefix coreutils)/libexec/gnubin:$PATH"
EOS
end
def coreutils_bins
commands = []
bin.find do |path|
next if path.directory? or path.basename.to_s == '.DS_Store'
commands << path.basename.to_s.sub(/^g/,'')
end
commands.sort
end
end
|