blob: e3e10ebac52c7822f1d8ae347e93fdd145c5a096 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
|