homebrew-core/Formula/json-glib.rb
Viktor Szakats bfaf172592 json-glib: use SSL/TLS url
Closes Homebrew/homebrew#39668.

Signed-off-by: Xu Cheng <xucheng@me.com>
2015-05-12 18:54:46 +08:00

54 lines
1.6 KiB
Ruby

class JsonGlib < Formula
homepage "https://live.gnome.org/JsonGlib"
url "https://download.gnome.org/sources/json-glib/1.0/json-glib-1.0.4.tar.xz"
sha256 "80f3593cb6bd13f1465828e46a9f740e2e9bd3cd2257889442b3e62bd6de05cd"
bottle do
sha256 "6892a414c3e09d955ddf5ae6b757d5b49c46fc4adb230afda9262a821a5da3af" => :yosemite
sha256 "d45ce5b7d2a3077b61a36565792b626e15ffc2b3f3cdc1011b349ee770b6019b" => :mavericks
sha256 "ef7772e0fc8f65c2b6b795de8b6743cefad78b309eeccf12e92c23705bd6f4a2" => :mountain_lion
end
depends_on "pkg-config" => :build
depends_on "glib"
depends_on "gobject-introspection"
def install
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--prefix=#{prefix}",
"--enable-introspection=yes"
system "make", "install"
end
test do
(testpath/"test.c").write <<-EOS.undent
#include <json-glib/json-glib.h>
int main(int argc, char *argv[]) {
JsonParser *parser = json_parser_new();
return 0;
}
EOS
gettext = Formula["gettext"]
glib = Formula["glib"]
flags = (ENV.cflags || "").split + (ENV.cppflags || "").split + (ENV.ldflags || "").split
flags += %W[
-I#{gettext.opt_include}
-I#{glib.opt_include}/glib-2.0
-I#{glib.opt_lib}/glib-2.0/include
-I#{include}/json-glib-1.0
-D_REENTRANT
-L#{gettext.opt_lib}
-L#{glib.opt_lib}
-L#{lib}
-lgio-2.0
-lglib-2.0
-lgobject-2.0
-lintl
-ljson-glib-1.0
]
system ENV.cc, "test.c", "-o", "test", *flags
system "./test"
end
end