fda2352af2
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>
15 lines
366 B
Ruby
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
|
|
|