homebrew-core/Formula/astyle.rb

15 lines
375 B
Ruby
Raw Normal View History

require 'formula'
2009-06-14 23:55:32 +00:00
class Astyle <Formula
@url='http://downloads.sourceforge.net/sourceforge/astyle/astyle_1.24_macosx.tar.gz'
@md5='9b63dadac58e867f14b3894befbdc9b3'
2009-06-14 23:55:32 +00:00
@homepage='http://astyle.sourceforge.net/'
def install
Dir.chdir 'src' do
ENV['prefix']=prefix
system "make -f ../build/mac/Makefile"
bin.install "./bin/astyle"
2009-06-14 23:55:32 +00:00
end
end
end