aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libgee.rb
blob: a5a015069ce95f30a80538173e35e704fa07635c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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'

  depends_on 'vala'

  def install
    system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
    system "make install"
  end
end