4a0ad60d38
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.
16 lines
387 B
Ruby
16 lines
387 B
Ruby
require 'brewkit'
|
|
|
|
class Vala <Formula
|
|
@url='http://download.gnome.org/sources/vala/0.7/vala-0.7.5.tar.bz2'
|
|
@homepage='http://live.gnome.org/Vala'
|
|
@md5='a102d582b2ac75b6bcdc5785683263fc'
|
|
|
|
def deps
|
|
LibraryDep.new 'glib'
|
|
end
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
|
system "make install"
|
|
end
|
|
end
|