New formula: ike-scan

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Lukasz Balcerzak 2010-11-28 13:43:59 +01:00 committed by Adam Vandenberg
parent daba541793
commit 7514726465
1 changed files with 15 additions and 0 deletions

15
Formula/ike-scan.rb Normal file
View File

@ -0,0 +1,15 @@
require 'formula'
class IkeScan <Formula
url 'http://www.nta-monitor.com/tools/ike-scan/download/ike-scan-1.9.tar.gz'
homepage 'http://www.nta-monitor.com/tools/ike-scan/'
md5 'bed63c7d2f54c482525a735be7b5e720'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}",
"--with-openssl"
system "make install"
end
end