blob: f5938e26ebdc5d8b7f5100ee24fda1f6b35d3e76 (
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
|
require "formula"
class JsonGlib < Formula
homepage "http://live.gnome.org/JsonGlib"
url "http://ftp.gnome.org/pub/gnome/sources/json-glib/1.0/json-glib-1.0.2.tar.xz"
sha256 "887bd192da8f5edc53b490ec51bf3ffebd958a671f5963e4f3af32c22e35660a"
bottle do
revision 1
sha1 "6e4d60ee9e486a5970ad184dd0740b562766a236" => :mavericks
sha1 "ebca4951df7a6824e7f78fcbaba3b768f9b73a84" => :mountain_lion
sha1 "26b6320e22759d47ac2b8d145fa045c5da66601b" => :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
end
|