diff options
| author | Sijawusz Pur Rahnama | 2012-01-31 19:15:14 +0100 |
|---|---|---|
| committer | Adam Vandenberg | 2012-03-25 18:17:59 -0700 |
| commit | 53371ad351c1ed8aa4337e7334476a5bc3ed108b (patch) | |
| tree | 2073079e3034814c98297df1c0d8d78fd64fbc0d /Library | |
| parent | 0a7703dbd07465a1b517541da273a57e508580fd (diff) | |
| download | homebrew-53371ad351c1ed8aa4337e7334476a5bc3ed108b.tar.bz2 | |
fwknop 2.0
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/fwknop.rb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/fwknop.rb b/Library/Formula/fwknop.rb new file mode 100644 index 000000000..0ee56f2f5 --- /dev/null +++ b/Library/Formula/fwknop.rb @@ -0,0 +1,17 @@ +require 'formula' + +class Fwknop < Formula + homepage 'http://www.cipherdyne.org/fwknop/' + url 'http://www.cipherdyne.org/fwknop/download/fwknop-2.0.tar.bz2' + md5 '96de4c5a4ae75a8618ef80269c6a70ad' + + def install + system "./configure", "--disable-dependency-tracking", + "--prefix=#{prefix}" + system "make install" + end + + def test + system "#{bin}/fwknop --version" + end +end |
