homebrew-core/Formula/libgee.rb

26 lines
773 B
Ruby
Raw Normal View History

2014-05-06 20:40:51 +00:00
require "formula"
2011-03-10 05:11:03 +00:00
class Libgee < Formula
2014-05-06 20:40:51 +00:00
homepage "https://wiki.gnome.org/Projects/Libgee"
2014-05-13 21:46:47 +00:00
url "http://ftp.gnome.org/pub/GNOME/sources/libgee/0.14/libgee-0.14.0.tar.xz"
2014-05-06 20:40:51 +00:00
sha1 "ca6531c8ba45cc865f2ce7b93a8b3f96e1c1505e"
2014-07-03 19:34:33 +00:00
bottle do
cellar :any
sha1 "b5f37cdf80ea636daea2b2652d8add8dcbe37202" => :mavericks
sha1 "d253f53b456e0e80c11395516340d8a3366f58d6" => :mountain_lion
sha1 "610ff718b5d418a28b90c779ff205a1bfd51bf26" => :lion
end
2014-05-06 20:40:51 +00:00
depends_on "pkg-config" => :build
depends_on "vala" => :build
2014-05-06 20:40:51 +00:00
depends_on "gobject-introspection"
def install
2014-05-06 20:40:51 +00:00
system "./configure", "--prefix=#{prefix}",
"--disable-dependency-tracking",
"--enable-introspection=yes"
system "make install"
end
end