49 lines
1.4 KiB
Ruby
49 lines
1.4 KiB
Ruby
require "formula"
|
|
|
|
class Vala < Formula
|
|
homepage "http://live.gnome.org/Vala"
|
|
head "git://git.gnome.org/vala"
|
|
url "http://ftp.acc.umu.se/pub/gnome/sources/vala/0.24/vala-0.24.0.tar.xz"
|
|
sha1 "33a71a21e12e80cf1f4e0aa3b6a6523ff38e92c8"
|
|
|
|
bottle do
|
|
sha1 "96f56ca5ec48b7e0822a6693818d38ca21499014" => :mavericks
|
|
sha1 "1562fe59048fe478e05914c4ae7f239c8e29bb4b" => :mountain_lion
|
|
sha1 "2aa1c2c25eda470464541c6d5d76d4d0cabb92e4" => :lion
|
|
end
|
|
|
|
depends_on "pkg-config" => :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
|
|
|
|
test do
|
|
test_string = "Hello Homebrew\n"
|
|
path = testpath/"hello.vala"
|
|
path.write <<-EOS
|
|
void main () {
|
|
print ("#{test_string}");
|
|
}
|
|
EOS
|
|
valac_args = [# Build with debugging symbols.
|
|
"-g",
|
|
# Use Homebrew's default C compiler.
|
|
"--cc=#{ENV.cc}",
|
|
# Save generated C source code.
|
|
"--save-temps",
|
|
# Vala source code path.
|
|
"#{path}"]
|
|
system "#{bin}/valac", *valac_args
|
|
assert File.exist?(testpath/"hello.c")
|
|
|
|
output = `#{testpath}/hello`
|
|
assert_equal test_string, output
|
|
assert_equal 0, $?.exitstatus
|
|
end
|
|
end
|