libmaxminddb 1.1.1
Closes Homebrew/homebrew#41995. Signed-off-by: Alex Dunn <dunn.alex@gmail.com>
This commit is contained in:
parent
620a03c51b
commit
0f90ec08b6
1 changed files with 5 additions and 13 deletions
|
@ -1,8 +1,8 @@
|
||||||
class Libmaxminddb < Formula
|
class Libmaxminddb < Formula
|
||||||
desc "C library for the MaxMind DB file format"
|
desc "C library for the MaxMind DB file format"
|
||||||
homepage "https://github.com/maxmind/libmaxminddb"
|
homepage "https://github.com/maxmind/libmaxminddb"
|
||||||
url "https://github.com/maxmind/libmaxminddb/releases/download/1.0.4/libmaxminddb-1.0.4.tar.gz"
|
url "https://github.com/maxmind/libmaxminddb/releases/download/1.1.1/libmaxminddb-1.1.1.tar.gz"
|
||||||
sha1 "57548d426d43b9b43c77786b08594d48d0c88c62"
|
sha256 "60060bc081573220d4633e4cbb26f999521c0f197304bc7f5ea700fc26ef2276"
|
||||||
|
|
||||||
bottle do
|
bottle do
|
||||||
cellar :any
|
cellar :any
|
||||||
|
@ -21,13 +21,6 @@ class Libmaxminddb < Formula
|
||||||
|
|
||||||
depends_on "geoipupdate" => :optional
|
depends_on "geoipupdate" => :optional
|
||||||
|
|
||||||
# This patch is from an upstream post-1.0.4 commit and fixes a test failure
|
|
||||||
# on OS X. See https://github.com/maxmind/libmaxminddb/commit/424953
|
|
||||||
patch do
|
|
||||||
url "https://github.com/maxmind/libmaxminddb/commit/424953.diff"
|
|
||||||
sha1 "362cf3254145188dc9959651ba7ee876007998c9"
|
|
||||||
end
|
|
||||||
|
|
||||||
option :universal
|
option :universal
|
||||||
|
|
||||||
def install
|
def install
|
||||||
|
@ -41,12 +34,11 @@ class Libmaxminddb < Formula
|
||||||
"--prefix=#{prefix}"
|
"--prefix=#{prefix}"
|
||||||
system "make", "check"
|
system "make", "check"
|
||||||
system "make", "install"
|
system "make", "install"
|
||||||
|
(share/"examples").install buildpath/"t/maxmind-db/test-data/GeoIP2-City-Test.mmdb"
|
||||||
end
|
end
|
||||||
|
|
||||||
test do
|
test do
|
||||||
system "curl", "-O", "http://geolite.maxmind.com/download/geoip/database/GeoLite2-Country.mmdb.gz"
|
system "#{bin}/mmdblookup", "-f", "#{share}/examples/GeoIP2-City-Test.mmdb",
|
||||||
system "gunzip", "GeoLite2-Country.mmdb.gz"
|
"-i", "175.16.199.0"
|
||||||
system "#{bin}/mmdblookup", "-f", "GeoLite2-Country.mmdb",
|
|
||||||
"-i", "8.8.8.8"
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue