aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/arp-sk.rb14
1 files changed, 7 insertions, 7 deletions
diff --git a/Library/Formula/arp-sk.rb b/Library/Formula/arp-sk.rb
index 04036892a..eba05ad25 100644
--- a/Library/Formula/arp-sk.rb
+++ b/Library/Formula/arp-sk.rb
@@ -1,17 +1,17 @@
-require 'formula'
+require "formula"
class ArpSk < Formula
- homepage 'http://sid.rstack.org/arp-sk/'
- url 'http://sid.rstack.org/arp-sk/files/arp-sk-0.0.16.tgz'
- sha1 'c7c0af367640d852f3ff622c5b03096ce4e940a4'
+ homepage "http://sid.rstack.org/arp-sk/"
+ url "http://sid.rstack.org/arp-sk/files/arp-sk-0.0.16.tgz"
+ sha1 "c7c0af367640d852f3ff622c5b03096ce4e940a4"
- depends_on 'libnet'
+ depends_on "libnet"
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}",
- "--with-libnet=#{HOMEBREW_PREFIX}"
- system "make install"
+ "--with-libnet=#{Formula['libnet'].opt_prefix}"
+ system "make", "install"
end
end