homebrew-core/Formula/astyle.rb
Jorge Luis Mendez 46e00df91f astyle 2.01
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-01-29 12:49:22 -08:00

15 lines
371 B
Ruby

require 'formula'
class Astyle <Formula
url 'http://downloads.sourceforge.net/sourceforge/astyle/astyle_2.01_macosx.tar.gz'
md5 'f81408554bf93ea4ad4feb008a76202c'
homepage 'http://astyle.sourceforge.net/'
def install
Dir.chdir 'src' do
ENV['prefix']=prefix
system "make -f ../build/mac/Makefile"
bin.install "bin/astyle"
end
end
end