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'
|
2012-08-21 03:32:51 +00:00
|
|
|
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'
|
2009-08-31 00:49:55 +00:00
|
|
|
|
2012-02-18 00:56:36 +00:00
|
|
|
depends_on 'xz' => :build
|
|
|
|
|
2009-08-31 00:49:55 +00:00
|
|
|
def install
|
2012-01-24 21:22:13 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}", "--program-prefix=g"
|
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
|
|
|
|
coreutils_bins.each do |cmd|
|
|
|
|
(libexec/'gnubin').install_symlink bin/"g#{cmd}" => cmd
|
2012-01-27 19:38:16 +00:00
|
|
|
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
|
|
|
|
2012-01-27 19:38:16 +00:00
|
|
|
PATH="$(brew --prefix coreutils)/libexec/gnubin:$PATH"
|
2009-08-31 00:49:55 +00:00
|
|
|
EOS
|
|
|
|
end
|
2012-04-01 16:35:23 +00:00
|
|
|
|
|
|
|
def coreutils_bins
|
2012-08-20 00:33:32 +00:00
|
|
|
commands = []
|
|
|
|
bin.find do |path|
|
|
|
|
next if path.directory? or path.basename.to_s == '.DS_Store'
|
|
|
|
commands << path.basename.to_s.sub(/^g/,'')
|
2012-04-01 16:35:23 +00:00
|
|
|
end
|
2012-08-20 00:33:32 +00:00
|
|
|
commands.sort
|
2012-04-01 16:35:23 +00:00
|
|
|
end
|
2009-09-23 11:43:52 +00:00
|
|
|
end
|