homebrew-core/Formula/astyle.rb
Jack Nagel 43c9b127a6 astyle: use the correct compiler
Fixes Homebrew/homebrew#10863.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-03-11 16:56:02 -05:00

14 lines
362 B
Ruby

require 'formula'
class Astyle < Formula
homepage 'http://astyle.sourceforge.net/'
url 'http://downloads.sourceforge.net/sourceforge/astyle/astyle_2.02_macosx.tar.gz'
md5 '16192ba46ba5348f107c712d6482c15a'
def install
cd 'src' do
system "make", "CXX=#{ENV.cxx}", "-f", "../build/mac/Makefile"
bin.install "bin/astyle"
end
end
end