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-13 02:49:17 +00:00
|
|
|
url 'https://github.com/mrash/fwknop/archive/2.6.1.tar.gz'
|
|
|
|
sha1 'f0bb89358262431cc4319223d582a24277a12dad'
|
2012-01-31 18:15:14 +00:00
|
|
|
|
2013-11-18 05:19:54 +00:00
|
|
|
depends_on :automake
|
|
|
|
depends_on :autoconf
|
|
|
|
depends_on :libtool
|
2013-11-17 13:10:33 +00:00
|
|
|
|
2014-01-13 07:17:20 +00:00
|
|
|
depends_on 'gpgme'
|
2013-05-07 02:34:13 +00:00
|
|
|
|
2012-01-31 18:15:14 +00:00
|
|
|
def install
|
2013-12-09 19:44:45 +00:00
|
|
|
system './autogen.sh' if build.head? or !File.exist?('configure')
|
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
|