homebrew-core/Formula/findutils.rb
Max Howell 61b2307139 s/require 'brewkit'/require 'formula'/g
brewkit.rb changes ENV destructively, so lets not do that everytime a formula
is required. Now it's possible for other tools to require a formula
description without worrying about side-effects.
2009-10-15 16:48:03 +01:00

12 lines
358 B
Ruby

require 'formula'
class Findutils <Formula
@url='http://ftp.gnu.org/pub/gnu/findutils/findutils-4.4.2.tar.gz'
@homepage='http://www.gnu.org/software/findutils/'
@md5='351cc4adb07d54877fa15f75fb77d39f'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end