blob: c4e0ec826694342667c0e453608e60899ab602fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
require 'formula'
class Vala <Formula
head 'git://git.gnome.org/vala'
url 'http://download.gnome.org/sources/vala/0.10/vala-0.10.0.tar.bz2'
homepage 'http://live.gnome.org/Vala'
md5 '1e38cdc951d2b43e49084a6d5ad19e9d'
depends_on 'pkg-config' => :build
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
|