homebrew-core/Formula/fwknop.rb
Ted Pennings 4cd0935be7 Convert all 'def test' formulae to 'test do'
Closes Homebrew/homebrew#26942.
Closes Homebrew/homebrew#26946.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-02-24 19:54:02 -08:00

26 lines
662 B
Ruby

require 'formula'
class Fwknop < Formula
homepage 'http://www.cipherdyne.org/fwknop/'
head 'https://github.com/mrash/fwknop.git'
url 'https://github.com/mrash/fwknop/archive/2.6.0.tar.gz'
sha1 '8e55413823f57e362a8f732da60da6c3c6240a6c'
depends_on :automake
depends_on :autoconf
depends_on :libtool
depends_on 'gpgme'
def install
system './autogen.sh' if build.head? or !File.exist?('configure')
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--with-gpgme"
system "make install"
end
test do
system "#{bin}/fwknop", "--version"
end
end