homebrew-core/Formula/vala.rb
Thijs Vermeir f3c827526e vala 0.18.1
Closes Homebrew/homebrew#17795.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-02-12 08:42:03 -08:00

24 lines
591 B
Ruby

require 'formula'
class Vala < Formula
homepage 'http://live.gnome.org/Vala'
url 'http://ftp.gnome.org/pub/gnome/sources/vala/0.18/vala-0.18.1.tar.xz'
sha1 'c6d24efb9a093b7b67b876b484c612a5af90b9bb'
head 'git://git.gnome.org/vala'
depends_on 'pkg-config' => :build
depends_on 'xz' => :build
depends_on 'gettext'
depends_on 'glib'
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make" # Fails to compile as a single step
system "make install"
end
def test
system "#{bin}/valac", "--version"
end
end