8dc451e3e2
Closes Homebrew/homebrew#20645. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
14 lines
388 B
Ruby
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
|