blob: f347967d2ab98808b3bc84e9d1aba2ad1dbd4758 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
require 'formula'
class Fwknop < Formula
homepage 'http://www.cipherdyne.org/fwknop/'
url 'http://www.cipherdyne.org/fwknop/download/fwknop-2.5.1.tar.bz2'
sha1 '65bed25e9d7f4a7ccc3f15cab35b95a6f7b21873'
# needed for gpg support
depends_on 'gpgme' => :optional
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
def test
system "#{bin}/fwknop", "--version"
end
end
|