aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/findutils.rb
diff options
context:
space:
mode:
authorGeoff Cant2009-09-07 18:27:11 +0200
committerMax Howell2009-09-18 14:16:30 +0100
commit0324b1cb2587dc66afbcf3aaa4d4967c4c73ba54 (patch)
tree6b0debcde6021fa28c0d75aa495af69469099dab /Library/Formula/findutils.rb
parentccd5f849acec0277a35baa4752e9113f41d813b7 (diff)
downloadhomebrew-0324b1cb2587dc66afbcf3aaa4d4967c4c73ba54.tar.bz2
Adding a formula for GNU find.
Diffstat (limited to 'Library/Formula/findutils.rb')
-rw-r--r--Library/Formula/findutils.rb12
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