diff options
| author | Richard Osborn | 2011-08-01 16:12:45 -0500 |
|---|---|---|
| committer | Adam Vandenberg | 2011-08-01 20:46:31 -0700 |
| commit | 4fa84719b4e752cccb7f98a05413f4f2123c6428 (patch) | |
| tree | 0e76520f1e72e714368cecb1f0aea304a08388da /Library/Formula/scrub.rb | |
| parent | f3b3d4ac17ae6d8c5fddfa7fcde6c3d071da5260 (diff) | |
| download | homebrew-4fa84719b4e752cccb7f98a05413f4f2123c6428.tar.bz2 | |
scrub 2.4
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/scrub.rb')
| -rw-r--r-- | Library/Formula/scrub.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/scrub.rb b/Library/Formula/scrub.rb new file mode 100644 index 000000000..d1c9cf869 --- /dev/null +++ b/Library/Formula/scrub.rb @@ -0,0 +1,13 @@ +require 'formula' + +class Scrub < Formula + url 'http://diskscrub.googlecode.com/files/scrub-2.4.tar.bz2' + homepage 'http://code.google.com/p/diskscrub/' + md5 '653b9698a7e62fd0c22704e1d6a3469c' + + def install + system "./configure", "--disable-debug", "--disable-dependency-tracking", + "--prefix=#{prefix}", "--mandir=#{man}" + system "make install" + end +end |
