diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/echoping.rb | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Library/Formula/echoping.rb b/Library/Formula/echoping.rb index 4948ace4e..80efd2179 100644 --- a/Library/Formula/echoping.rb +++ b/Library/Formula/echoping.rb @@ -1,8 +1,8 @@ require 'formula' class Echoping < Formula - url 'http://downloads.sourceforge.net/project/echoping/echoping/6.0.2/echoping-6.0.2.tar.gz' homepage 'http://echoping.sourceforge.net/' + url 'http://downloads.sourceforge.net/project/echoping/echoping/6.0.2/echoping-6.0.2.tar.gz' md5 '991478532b56ab3b6f46ea9fa332626f' depends_on 'popt' @@ -11,11 +11,12 @@ class Echoping < Formula # Fixes a DNS issue with header files, taken from Macports # https://trac.macports.org/browser/trunk/dports/net/echoping/files/patch-plugins-dns-dns.c.diff def patches - DATA + DATA end def install - system "./configure", "--config-cache", "--disable-debug", "--disable-dependency-tracking", + system "./configure", "--disable-debug", "--disable-dependency-tracking", + "--config-cache", "--prefix=#{prefix}", "--mandir=#{man}" system "make install" |
