diff options
| author | Adam Vandenberg | 2012-02-09 22:17:57 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2012-02-09 22:17:57 -0800 |
| commit | cc96f317411c9296f92ba5f8c9bd35cae89fa90a (patch) | |
| tree | b696d8a1c7d88755e60763356d043c801bf72725 | |
| parent | 78f4ed2795d175674259aa6cf7b06a4cd3e352fa (diff) | |
| download | homebrew-cc96f317411c9296f92ba5f8c9bd35cae89fa90a.tar.bz2 | |
sslscan: update style
| -rw-r--r-- | Library/Formula/sslscan.rb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Library/Formula/sslscan.rb b/Library/Formula/sslscan.rb index 36137899b..40918b5d2 100644 --- a/Library/Formula/sslscan.rb +++ b/Library/Formula/sslscan.rb @@ -1,23 +1,23 @@ require 'formula' class Sslscan < Formula - url 'http://sourceforge.net/projects/sslscan/files/sslscan/sslscan%201.8.0/sslscan-1.8.0.tgz' homepage 'https://www.titania-security.com/labs/sslscan' + url 'http://sourceforge.net/projects/sslscan/files/sslscan/sslscan%201.8.0/sslscan-1.8.0.tgz' md5 '7f5fa87019024366691c6b27cb3a81e7' + # Remove hardcoded gcc in Makefile def patches - # Fixes the Makefile to properly build sslscan DATA end def install system "make" - bin.install ["sslscan"] - man1.install ["sslscan.1"] + bin.install "sslscan" + man1.install "sslscan.1" end def test - system "sslscan" + system "#{bin}/sslscan" end end |
