aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Höppner2009-09-19 11:33:04 +0200
committerDavid Höppner2009-09-19 11:33:04 +0200
commit0b27712e6fa11c8153af692ba32046d2d29a5659 (patch)
treea37580425056549bdf64a826bad7ef42b7921bc7
parentf7a2f33538bddd5b66157e97fb377670da637d54 (diff)
downloadhomebrew-0b27712e6fa11c8153af692ba32046d2d29a5659.tar.bz2
Libgee formula
Libgee is a collection library providing GObject-based interfaces and classes for commonly used data structures.
-rw-r--r--Library/Formula/libgee.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/libgee.rb b/Library/Formula/libgee.rb
new file mode 100644
index 000000000..cecb5d0b0
--- /dev/null
+++ b/Library/Formula/libgee.rb
@@ -0,0 +1,16 @@
+require 'brewkit'
+
+class Libgee <Formula
+ @url='http://ftp.gnome.org/pub/GNOME/sources/libgee/0.3/libgee-0.3.0.tar.bz2'
+ @homepage='http://live.gnome.org/Libgee'
+ @md5='1ca2b8a87950ef1b14342fb32db3e558'
+
+ def deps
+ BinaryDep.new 'valac'
+ end
+
+ def install
+ system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
+ system "make install"
+ end
+end