20 lines
650 B
Ruby
20 lines
650 B
Ruby
require 'formula'
|
|
|
|
class Libnet < Formula
|
|
url "http://github.com/sam-github/libnet/tarball/libnet-1.1.4"
|
|
md5 "0cb6c04063c1db37c91af08c76d25134"
|
|
head 'git://github.com/sam-github/libnet.git'
|
|
homepage 'http://github.com/sam-github/libnet'
|
|
|
|
def install
|
|
cd 'libnet'
|
|
inreplace "autogen.sh", "libtoolize", "glibtoolize"
|
|
system "./autogen.sh"
|
|
system "cp", "/usr/share/automake-1.10/config.sub", "."
|
|
system "cp", "/usr/share/automake-1.10/config.guess", "."
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
|
touch 'doc/man/man3/libnet.3'
|
|
system "make install"
|
|
end
|
|
end
|
|
|