48 lines
1.4 KiB
Ruby
48 lines
1.4 KiB
Ruby
require "formula"
|
|
|
|
class Geoipupdate < Formula
|
|
homepage "https://github.com/maxmind/geoipupdate"
|
|
url "https://github.com/maxmind/geoipupdate/releases/download/v2.0.2/geoipupdate-2.0.2.tar.gz"
|
|
sha1 "14274698cacb5468475a008b8db61e162ff1ce73"
|
|
|
|
bottle do
|
|
sha1 "583c8a6af265daf2ff07abeb0e2d77ac028814e8" => :mavericks
|
|
sha1 "67dee561ce6c78297fe1206e67fe661c8b61a213" => :mountain_lion
|
|
sha1 "b653b2c88c8a4316de87b66147c00180a4b7a6f4" => :lion
|
|
end
|
|
|
|
head do
|
|
url "https://github.com/maxmind/geoipupdate.git"
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "libtool" => :build
|
|
end
|
|
|
|
option :universal
|
|
|
|
def install
|
|
ENV.universal_binary if build.universal?
|
|
|
|
# Download free databases by default
|
|
# See https://github.com/maxmind/geoip-api-c#150
|
|
inreplace "conf/GeoIP.conf.default", "YOUR_USER_ID_HERE", "999999"
|
|
inreplace "conf/GeoIP.conf.default", "YOUR_LICENSE_KEY_HERE", "000000000000"
|
|
inreplace "conf/GeoIP.conf.default", /^ProductIds .*$/, "ProductIds 506 533"
|
|
|
|
system "./bootstrap" if build.head?
|
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--disable-silent-rules",
|
|
"--datadir=#{var}",
|
|
"--prefix=#{prefix}"
|
|
system "make", "install"
|
|
end
|
|
|
|
def post_install
|
|
(var/"GeoIP").mkpath
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/geoipupdate", "-v"
|
|
end
|
|
end
|