homebrew-core/Formula/astyle.rb
Mike Arthur b3900f37dd Be nicer to Sourceforge by using their gateway server
Thus we download from the best mirror always.
2009-12-05 15:09:31 +00:00

15 lines
376 B
Ruby

require 'formula'
class Astyle <Formula
@url='http://downloads.sourceforge.net/sourceforge/astyle/astyle_1.23_macosx.tar.gz'
@md5='9f7f3237996776d01bc6837cd445a442'
@homepage='http://astyle.sourceforge.net/'
def install
Dir.chdir 'src' do
ENV['prefix']=prefix
system "make -f ../buildmac/Makefile"
bin.install "../bin/astyle"
end
end
end