2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-06-14 23:55:32 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Astyle < Formula
|
2012-02-21 06:04:21 +00:00
|
|
|
homepage 'http://astyle.sourceforge.net/'
|
2014-02-27 14:19:55 +00:00
|
|
|
url 'https://downloads.sourceforge.net/project/astyle/astyle/astyle%202.04/astyle_2.04_macosx.tar.gz'
|
2013-11-19 14:57:01 +00:00
|
|
|
sha1 '2aa956c4521a1163da6a8be741786fd89c1f39a7'
|
2009-06-14 23:55:32 +00:00
|
|
|
|
|
|
|
def install
|
2012-02-21 06:04:21 +00:00
|
|
|
cd 'src' do
|
2012-03-11 21:55:21 +00:00
|
|
|
system "make", "CXX=#{ENV.cxx}", "-f", "../build/mac/Makefile"
|
2010-04-07 05:58:35 +00:00
|
|
|
bin.install "bin/astyle"
|
2009-06-14 23:55:32 +00:00
|
|
|
end
|
|
|
|
end
|
2011-01-26 00:35:02 +00:00
|
|
|
end
|