homebrew-core/Formula/gccxml.rb

17 lines
348 B
Ruby
Raw Normal View History

require 'formula'
2009-09-28 00:02:28 +00:00
2011-03-10 05:11:03 +00:00
class Gccxml < Formula
homepage 'http://www.gccxml.org/HTML/Index.html'
head "cvs://:pserver:anoncvs@www.gccxml.org:/cvsroot/GCC_XML:gccxml"
2009-09-28 00:02:28 +00:00
depends_on 'cmake' => :build
2009-09-28 00:02:28 +00:00
def install
2012-02-22 04:48:36 +00:00
mkdir 'gccxml-build' do
system "cmake", ".", *std_cmake_args
2009-09-28 00:02:28 +00:00
system "make"
system "make install"
end
end
end