homebrew-core/Formula/vala.rb
Dzhelil Rufat b5b4860c29 Update formula for Vala to version 0.9.2
Vala is a new programming language that aims to bring modern programming language features to GNOME developers without imposing any additional runtime requirements and without using a different ABI compared to applications and libraries written in C.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-06-21 09:28:11 -07:00

18 lines
484 B
Ruby

require 'formula'
class Vala <Formula
head 'git://git.gnome.org/vala'
url 'http://download.gnome.org/sources/vala/0.9/vala-0.9.2.tar.bz2'
homepage 'http://live.gnome.org/Vala'
md5 '583f2c46da49f54e4f639eb706475abe'
depends_on 'pkg-config'
depends_on 'gettext'
depends_on 'glib'
def install
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
system "make" # Single step fails to compile for 0.8.0
system "make install"
end
end