aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2014-08-02 09:25:32 -0700
committerAdam Vandenberg2014-08-02 09:25:32 -0700
commit9185be5174c0bcb9ce51f01265df3f8809cc481f (patch)
tree7593e2737c667fc0d2697aed7fe046087dc3374d /Library/Formula
parentcd0f294b492707e71afa2e6ee61858e713b51284 (diff)
downloadhomebrew-9185be5174c0bcb9ce51f01265df3f8809cc481f.tar.bz2
arp-sk: use libnet prefix
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