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