arp-sk: use libnet prefix

master
Adam Vandenberg 2014-08-02 09:25:32 -07:00
parent 4d8e3a60df
commit e7338eb8d2
1 changed files with 7 additions and 7 deletions

View File

@ -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