homebrew-core/Formula/astyle.rb
Victor Martinez 8dc451e3e2 Fixed several broken sourceforge.net download locations
Closes Homebrew/homebrew#20645.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-06-30 12:17:57 -07: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.03/astyle_2.03_macosx.tar.gz'
sha1 '60595f6a4704e9c2b9cc6a24c3276695dc6288b2'
def install
cd 'src' do
system "make", "CXX=#{ENV.cxx}", "-f", "../build/mac/Makefile"
bin.install "bin/astyle"
end
end
end