2012-01-31 18:15:14 +00:00
|
|
|
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'
|
2014-04-29 18:28:31 +00:00
|
|
|
url 'https://github.com/mrash/fwknop/archive/2.6.2.tar.gz'
|
|
|
|
sha1 '3e518d3db0831061b027475869c77a7ff304219e'
|
2012-01-31 18:15:14 +00:00
|
|
|
|
2014-06-01 01:39:25 +00:00
|
|
|
depends_on "automake" => :build
|
|
|
|
depends_on "autoconf" => :build
|
|
|
|
depends_on "libtool" => :build
|
|
|
|
depends_on "gpgme"
|
2013-05-07 02:34:13 +00:00
|
|
|
|
2012-01-31 18:15:14 +00:00
|
|
|
def install
|
2014-06-01 01:39:25 +00:00
|
|
|
system "./autogen.sh"
|
2012-01-31 18:15:14 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking",
|
2014-01-13 07:17:20 +00:00
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--with-gpgme"
|
2012-01-31 18:15:14 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
|
2014-02-23 21:31:41 +00:00
|
|
|
test do
|
2012-05-15 21:36:45 +00:00
|
|
|
system "#{bin}/fwknop", "--version"
|
2012-01-31 18:15:14 +00:00
|
|
|
end
|
|
|
|
end
|