2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-08-31 00:49:55 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Coreutils < Formula
|
2010-07-02 02:03:04 +00:00
|
|
|
homepage 'http://www.gnu.org/software/coreutils'
|
2013-12-15 18:25:55 +00:00
|
|
|
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'
|
2009-08-31 00:49:55 +00:00
|
|
|
|
2014-06-09 12:47:29 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any
|
|
|
|
sha1 "783f81800029deb6dc4929206a5949dab8bd609d" => :mavericks
|
|
|
|
sha1 "811bf983bc23ca91cac614fee341303ca91c3094" => :mountain_lion
|
|
|
|
sha1 "4f65c3f9edb862faddb0599a94fd92849c04f973" => :lion
|
|
|
|
end
|
|
|
|
|
2013-11-12 15:12:03 +00:00
|
|
|
conflicts_with 'ganglia', :because => 'both install `gstat` binaries'
|
2013-11-10 06:20:45 +00:00
|
|
|
conflicts_with 'idutils', :because => 'both install `gid` and `gid.1`'
|
|
|
|
|
2009-08-31 00:49:55 +00:00
|
|
|
def install
|
2013-04-06 18:38:40 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}",
|
|
|
|
"--program-prefix=g",
|
|
|
|
"--without-gmp"
|
2009-08-31 00:49:55 +00:00
|
|
|
system "make install"
|
2010-10-17 22:44:59 +00:00
|
|
|
|
2012-08-20 00:33:32 +00:00
|
|
|
# Symlink all commands into libexec/gnubin without the 'g' prefix
|
2012-11-05 21:35:14 +00:00
|
|
|
coreutils_filenames(bin).each do |cmd|
|
2012-08-20 00:33:32 +00:00
|
|
|
(libexec/'gnubin').install_symlink bin/"g#{cmd}" => cmd
|
2012-01-27 19:38:16 +00:00
|
|
|
end
|
2012-11-05 21:35:14 +00:00
|
|
|
# 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
|
2009-08-31 00:49:55 +00:00
|
|
|
end
|
|
|
|
|
2012-01-27 19:38:16 +00:00
|
|
|
def caveats; <<-EOS.undent
|
|
|
|
All commands have been installed with the prefix 'g'.
|
2010-10-20 15:50:10 +00:00
|
|
|
|
2012-01-27 19:38:16 +00:00
|
|
|
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:
|
2010-10-20 15:50:10 +00:00
|
|
|
|
2014-03-06 05:28:31 +00:00
|
|
|
PATH="#{opt_libexec}/gnubin:$PATH"
|
2012-11-05 21:35:14 +00:00
|
|
|
|
|
|
|
Additionally, you can access their man pages with normal names if you add
|
|
|
|
the "gnuman" directory to your MANPATH from your bashrc as well:
|
|
|
|
|
2014-03-06 05:28:31 +00:00
|
|
|
MANPATH="#{opt_libexec}/gnuman:$MANPATH"
|
2012-11-05 21:35:14 +00:00
|
|
|
|
2009-08-31 00:49:55 +00:00
|
|
|
EOS
|
|
|
|
end
|
2012-04-01 16:35:23 +00:00
|
|
|
|
2012-11-05 21:35:14 +00:00
|
|
|
def coreutils_filenames (dir)
|
|
|
|
filenames = []
|
|
|
|
dir.find do |path|
|
2012-08-20 00:33:32 +00:00
|
|
|
next if path.directory? or path.basename.to_s == '.DS_Store'
|
2012-11-05 21:35:14 +00:00
|
|
|
filenames << path.basename.to_s.sub(/^g/,'')
|
2012-04-01 16:35:23 +00:00
|
|
|
end
|
2012-11-05 21:35:14 +00:00
|
|
|
filenames.sort
|
2012-04-01 16:35:23 +00:00
|
|
|
end
|
2009-09-23 11:43:52 +00:00
|
|
|
end
|