b5b4860c29
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>
18 lines
484 B
Ruby
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
|