fwknop 2.0

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Sijawusz Pur Rahnama 2012-01-31 19:15:14 +01:00 committed by Adam Vandenberg
parent e2d0bf33c6
commit efaa86a54a

17
Formula/fwknop.rb Normal file
View file

@ -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