Libgee formula

Libgee is a collection library providing GObject-based interfaces and
classes for commonly used data structures.
master
David Höppner 2009-09-19 11:33:04 +02:00
parent 4a0ad60d38
commit bb25b20b2a
1 changed files with 16 additions and 0 deletions

16
Formula/libgee.rb Normal file
View File

@ -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