homebrew-core/Formula/gccxml.rb
Jack Nagel c7630f5ff4 Use new std_cmake_args method
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-05-22 22:22:00 -05:00

17 lines
364 B
Ruby

require 'formula'
class Gccxml < Formula
homepage 'http://www.gccxml.org/HTML/Index.html'
url "cvs://:pserver:anoncvs@www.gccxml.org:/cvsroot/GCC_XML:gccxml"
version 'HEAD'
depends_on 'cmake' => :build
def install
mkdir 'gccxml-build' do
system "cmake", ".", *std_cmake_args
system "make"
system "make install"
end
end
end