2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-10-03 02:09:26 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Geoip < Formula
|
2009-10-03 02:09:26 +00:00
|
|
|
homepage 'http://www.maxmind.com/app/c'
|
2012-07-07 18:08:22 +00:00
|
|
|
url 'http://geolite.maxmind.com/download/geoip/api/c/GeoIP-1.4.8.tar.gz'
|
|
|
|
sha1 '7bafb9918e3c35a6ccc71bb14945245d45c4b796'
|
2009-10-03 02:09:26 +00:00
|
|
|
|
2012-04-03 01:55:58 +00:00
|
|
|
# These are needed for the autoreconf it always tries to run.
|
2012-07-07 18:08:22 +00:00
|
|
|
depends_on :automake
|
|
|
|
depends_on :libtool
|
2012-04-03 01:55:58 +00:00
|
|
|
|
2010-10-17 15:52:14 +00:00
|
|
|
def options
|
|
|
|
[["--universal", "Build a universal binary."]]
|
|
|
|
end
|
|
|
|
|
2009-10-03 02:09:26 +00:00
|
|
|
def install
|
2012-07-26 13:45:43 +00:00
|
|
|
ENV.delete('LANG')
|
2011-04-21 16:42:27 +00:00
|
|
|
ENV.universal_binary if ARGV.build_universal?
|
2012-04-03 01:55:58 +00:00
|
|
|
|
|
|
|
# Fixes a build error on Lion when configure does a variant of autoreconf
|
|
|
|
# that results in a botched Makefile, causing this error:
|
|
|
|
# No rule to make target '../libGeoIP/libGeoIP.la', needed by 'geoiplookup'
|
|
|
|
# This works on Snow Leopard also when it tries but fails to run autoreconf.
|
|
|
|
system "autoreconf", "-ivf"
|
|
|
|
|
2009-10-03 02:09:26 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|