63cde03be4
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
17 lines
414 B
Ruby
17 lines
414 B
Ruby
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
|