homebrew-core/Formula/fwknop.rb

26 lines
650 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.2.tar.gz'
sha1 '3e518d3db0831061b027475869c77a7ff304219e'
depends_on "automake" => :build
depends_on "autoconf" => :build
depends_on "libtool" => :build
depends_on "gpgme"
def install
system "./autogen.sh"
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--with-gpgme"
system "make install"
end
test do
system "#{bin}/fwknop", "--version"
end
end