homebrew-core/Formula/astyle.rb
Brett Koonce cc203a7c3e astyle 2.04
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-11-19 13:59:06 -06:00

14 lines
388 B
Ruby

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