diff options
| author | Geoff Cant | 2009-09-07 18:27:11 +0200 |
|---|---|---|
| committer | Max Howell | 2009-09-18 14:16:30 +0100 |
| commit | 0324b1cb2587dc66afbcf3aaa4d4967c4c73ba54 (patch) | |
| tree | 6b0debcde6021fa28c0d75aa495af69469099dab /Library/Formula/findutils.rb | |
| parent | ccd5f849acec0277a35baa4752e9113f41d813b7 (diff) | |
| download | homebrew-0324b1cb2587dc66afbcf3aaa4d4967c4c73ba54.tar.bz2 | |
Adding a formula for GNU find.
Diffstat (limited to 'Library/Formula/findutils.rb')
| -rw-r--r-- | Library/Formula/findutils.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/findutils.rb b/Library/Formula/findutils.rb new file mode 100644 index 000000000..fe15720ef --- /dev/null +++ b/Library/Formula/findutils.rb @@ -0,0 +1,12 @@ +require 'brewkit' + +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 |
