homebrew-core/Formula/astyle.rb

15 lines
388 B
Ruby
Raw Normal View History

require 'formula'
2009-06-14 23:55:32 +00:00
2011-03-10 05:11:03 +00:00
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'
2009-06-14 23:55:32 +00:00
def install
cd 'src' do
system "make", "CXX=#{ENV.cxx}", "-f", "../build/mac/Makefile"
bin.install "bin/astyle"
2009-06-14 23:55:32 +00:00
end
end
end