6d751da366
Closes Homebrew/homebrew#15643. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
20 lines
607 B
Ruby
20 lines
607 B
Ruby
require 'formula'
|
|
|
|
class Findutils < Formula
|
|
homepage 'http://www.gnu.org/software/findutils/'
|
|
url 'http://ftpmirror.gnu.org/findutils/findutils-4.4.2.tar.gz'
|
|
mirror 'http://ftp.gnu.org/gnu/findutils/findutils-4.4.2.tar.gz'
|
|
sha1 'e8dd88fa2cc58abffd0bfc1eddab9020231bb024'
|
|
|
|
option 'default-names', "Do not prepend 'g' to the binary"
|
|
|
|
def install
|
|
args = ["--prefix=#{prefix}",
|
|
"--disable-dependency-tracking",
|
|
"--disable-debug"]
|
|
args << "--program-prefix=g" unless build.include? 'default-names'
|
|
|
|
system "./configure", *args
|
|
system "make install"
|
|
end
|
|
end
|