homebrew-core/Formula/fwknop.rb

27 lines
662 B
Ruby
Raw Normal View History

require 'formula'
class Fwknop < Formula
homepage 'http://www.cipherdyne.org/fwknop/'
2013-11-21 05:29:34 +00:00
head 'https://github.com/mrash/fwknop.git'
url 'https://github.com/mrash/fwknop/archive/2.6.1.tar.gz'
sha1 'f0bb89358262431cc4319223d582a24277a12dad'
depends_on :automake
depends_on :autoconf
depends_on :libtool
depends_on 'gpgme'
def install
2013-12-09 19:44:45 +00:00
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