2014-05-06 20:40:51 +00:00
|
|
|
require "formula"
|
2009-09-19 09:33:04 +00:00
|
|
|
|
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"
|
2009-09-19 09:33:04 +00:00
|
|
|
|
2014-05-06 20:40:51 +00:00
|
|
|
depends_on "pkg-config" => :build
|
2014-05-06 20:57:11 +00:00
|
|
|
depends_on "vala" => :build
|
2014-05-06 20:40:51 +00:00
|
|
|
depends_on "gobject-introspection"
|
2009-09-19 09:33:04 +00:00
|
|
|
|
|
|
|
def install
|
2014-05-06 20:40:51 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}",
|
|
|
|
"--disable-dependency-tracking",
|
|
|
|
"--enable-introspection=yes"
|
2009-09-19 09:33:04 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|