06cb65df78
Fixes Homebrew/homebrew#10559. Also added missing deps for osm2pgsql. Removed some ACLOCAL_FLAGS stuff as in theory this is not set in ENV.rb. Would like to see if it causes trouble. Should just work now.
30 lines
871 B
Ruby
30 lines
871 B
Ruby
require 'formula'
|
|
|
|
class Libnet < Formula
|
|
url "https://github.com/sam-github/libnet/tarball/libnet-1.1.4"
|
|
md5 "0cb6c04063c1db37c91af08c76d25134"
|
|
head 'https://github.com/sam-github/libnet.git'
|
|
homepage 'https://github.com/sam-github/libnet'
|
|
|
|
if MacOS.xcode_version >= "4.3"
|
|
# when and if the tarball provides configure, remove autogen.sh and these deps
|
|
depends_on "automake" => :build
|
|
depends_on "libtool" => :build
|
|
end
|
|
|
|
def install
|
|
cd 'libnet'
|
|
inreplace "autogen.sh", "libtoolize", "glibtoolize"
|
|
system "./autogen.sh"
|
|
|
|
unless MacOS.leopard?
|
|
cp "/usr/share/libtool/config/config.guess", "."
|
|
cp "/usr/share/libtool/config/config.sub", "."
|
|
end
|
|
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
|
touch 'doc/man/man3/libnet.3'
|
|
system "make install"
|
|
end
|
|
end
|
|
|