44776ae3c7
Closes Homebrew/homebrew#11305. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
14 lines
364 B
Ruby
14 lines
364 B
Ruby
require 'formula'
|
|
|
|
class Astyle < Formula
|
|
homepage 'http://astyle.sourceforge.net/'
|
|
url 'http://downloads.sourceforge.net/sourceforge/astyle/astyle_2.02.1_macosx.tar.gz'
|
|
md5 '38f3a20be7ba685496d479316d6004b0'
|
|
|
|
def install
|
|
cd 'src' do
|
|
system "make", "CXX=#{ENV.cxx}", "-f", "../build/mac/Makefile"
|
|
bin.install "bin/astyle"
|
|
end
|
|
end
|
|
end
|