diff options
| author | linuxgeek247 | 2012-06-28 12:20:53 -0400 |
|---|---|---|
| committer | Adam Vandenberg | 2012-07-09 11:23:43 -0700 |
| commit | eefba0a6ce6d8253c8ae6b93601cc479863b2b81 (patch) | |
| tree | 1d9c427c1db0b6f9d23fe57c946e5ea829c845a1 | |
| parent | c2ecde631155710b1c88fe51a29a799eb1f59157 (diff) | |
| download | homebrew-eefba0a6ce6d8253c8ae6b93601cc479863b2b81.tar.bz2 | |
ophcrack 3.4.0
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/ophcrack.rb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Library/Formula/ophcrack.rb b/Library/Formula/ophcrack.rb new file mode 100644 index 000000000..e3e10ebac --- /dev/null +++ b/Library/Formula/ophcrack.rb @@ -0,0 +1,18 @@ +require 'formula' + +class Ophcrack < Formula + homepage 'http://ophcrack.sourceforge.net/' + url 'http://downloads.sourceforge.net/project/ophcrack/ophcrack/3.4.0/ophcrack-3.4.0.tar.bz2' + sha1 '346f7e4689f2c0fc65ba7087b1ae91d00edf15b6' + + def install + system "./configure", "--disable-debug", + "--disable-gui", + "--prefix=#{prefix}" + + system "make" + cd 'src' do + system "make install" + end + end +end |
