homebrew-core/Formula/libnet.rb
Edward George fda2352af2 removed patches from libnet formula.
the patches in the formula fail to apply against the latest code in the libnet
git repository, libnet compiles without these patches now it seems.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-04-14 07:38:44 -07:00

15 lines
366 B
Ruby

require 'formula'
class Libnet < Formula
head 'git://github.com/sam-github/libnet.git'
homepage 'http://github.com/sam-github/libnet'
def install
cd 'libnet'
system "./autogen.sh"
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
touch 'doc/man/man3/libnet.3'
system "make install"
end
end