homebrew-core/Formula/gccxml.rb

19 lines
387 B
Ruby
Raw Normal View History

require 'formula'
2009-09-28 00:02:28 +00:00
class Gccxml <Formula
url "cvs://:pserver:anoncvs@www.gccxml.org:/cvsroot/GCC_XML:gccxml"
version 'HEAD'
2009-09-28 00:02:28 +00:00
homepage 'http://www.gccxml.org/HTML/Index.html'
depends_on 'cmake'
def install
mkdir 'gccxml-build'
2009-09-28 00:02:28 +00:00
Dir.chdir 'gccxml-build' do
system "cmake .. #{std_cmake_parameters}"
system "make"
system "make install"
end
end
end