2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-06-14 23:55:32 +00:00
|
|
|
|
|
|
|
class Astyle <Formula
|
2010-02-26 02:36:08 +00:00
|
|
|
@url='http://downloads.sourceforge.net/sourceforge/astyle/astyle_1.24_macosx.tar.gz'
|
|
|
|
@md5='9b63dadac58e867f14b3894befbdc9b3'
|
2009-06-14 23:55:32 +00:00
|
|
|
@homepage='http://astyle.sourceforge.net/'
|
|
|
|
|
|
|
|
def install
|
|
|
|
Dir.chdir 'src' do
|
|
|
|
ENV['prefix']=prefix
|
2010-02-26 02:36:08 +00:00
|
|
|
system "make -f ../build/mac/Makefile"
|
|
|
|
bin.install "./bin/astyle"
|
2009-06-14 23:55:32 +00:00
|
|
|
end
|
|
|
|
end
|
2010-02-26 02:36:08 +00:00
|
|
|
end
|