blob: ea7b4cc0d23ca22d75c13c9f29635d1793df7b32 (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
require 'formula'
class Coreutils < Formula
homepage 'http://www.gnu.org/software/coreutils'
url 'http://ftpmirror.gnu.org/coreutils/coreutils-8.22.tar.xz'
mirror 'http://ftp.gnu.org/gnu/coreutils/coreutils-8.22.tar.xz'
sha256 '5b3e94998152c017e6c75d56b9b994188eb71bf46d4038a642cb9141f6ff1212'
bottle do
cellar :any
sha1 "783f81800029deb6dc4929206a5949dab8bd609d" => :mavericks
sha1 "811bf983bc23ca91cac614fee341303ca91c3094" => :mountain_lion
sha1 "4f65c3f9edb862faddb0599a94fd92849c04f973" => :lion
end
conflicts_with 'ganglia', :because => 'both install `gstat` binaries'
conflicts_with 'idutils', :because => 'both install `gid` and `gid.1`'
def install
system "./configure", "--prefix=#{prefix}",
"--program-prefix=g",
"--without-gmp"
system "make install"
# Symlink all commands into libexec/gnubin without the 'g' prefix
coreutils_filenames(bin).each do |cmd|
(libexec/'gnubin').install_symlink bin/"g#{cmd}" => cmd
end
# Symlink all man(1) pages into libexec/gnuman without the 'g' prefix
coreutils_filenames(man1).each do |cmd|
(libexec/'gnuman'/'man1').install_symlink man1/"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="#{opt_libexec}/gnubin:$PATH"
Additionally, you can access their man pages with normal names if you add
the "gnuman" directory to your MANPATH from your bashrc as well:
MANPATH="#{opt_libexec}/gnuman:$MANPATH"
EOS
end
def coreutils_filenames (dir)
filenames = []
dir.find do |path|
next if path.directory? or path.basename.to_s == '.DS_Store'
filenames << path.basename.to_s.sub(/^g/,'')
end
filenames.sort
end
end
|