blob: 119f6d68f6ede8850782573dba3cd05107bb96a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
require 'formula'
class Libmaxminddb < Formula
homepage 'https://github.com/maxmind/libmaxminddb'
url 'https://github.com/maxmind/libmaxminddb/releases/download/0.5.2/libmaxminddb-0.5.2.tar.gz'
sha1 'db7618a97c222cab0a0ba2fb8439abcd1465f10c'
head 'https://github.com/maxmind/libmaxminddb.git'
option :universal
def install
ENV.universal_binary if build.universal?
system "./bootstrap" if build.head?
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{prefix}"
system "make", "check"
system "make", "install"
end
test do
system "curl", "-O", "http://geolite.maxmind.com/download/geoip/database/GeoLite2-Country.mmdb.gz"
system "gunzip", "GeoLite2-Country.mmdb.gz"
system "#{bin}/mmdblookup", "-f", "GeoLite2-Country.mmdb",
"-i", "8.8.8.8"
end
end
|