aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/libgee.rb17
1 files changed, 10 insertions, 7 deletions
diff --git a/Library/Formula/libgee.rb b/Library/Formula/libgee.rb
index c3f019a30..cda7577d0 100644
--- a/Library/Formula/libgee.rb
+++ b/Library/Formula/libgee.rb
@@ -1,15 +1,18 @@
-require 'formula'
+require "formula"
class Libgee < Formula
- homepage 'http://live.gnome.org/Libgee'
- url 'http://ftp.gnome.org/pub/GNOME/sources/libgee/0.12/libgee-0.12.0.tar.xz'
- sha256 'd106ed63fe0da5d5ee89aa8197a373cf9a2b96688cc3060144bfc0a022496ea5'
+ homepage "https://wiki.gnome.org/Projects/Libgee"
+ url "https://download.gnome.org/sources/libgee/0.14/libgee-0.14.0.tar.xz"
+ sha1 "ca6531c8ba45cc865f2ce7b93a8b3f96e1c1505e"
- depends_on 'pkg-config' => :build
- depends_on 'vala'
+ depends_on "pkg-config" => :build
+ depends_on "gobject-introspection"
+ depends_on "vala"
def install
- system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
+ system "./configure", "--prefix=#{prefix}",
+ "--disable-dependency-tracking",
+ "--enable-introspection=yes"
system "make install"
end
end