7bd947eb0b
* Use new "url" features * Use keg_only DSL * Use "skip_clean :all" DSL * Whitespace and style cleanups * Make bash invocations less silly * Use new man2-man8 helpers * Remove "FileUtils." since it is included in Formula * Use real names for deps instead of aliases * ENV.x11 now updates path, so remove that from individual brews
15 lines
No EOL
370 B
Ruby
15 lines
No EOL
370 B
Ruby
require 'formula'
|
|
|
|
class Astyle <Formula
|
|
url 'http://downloads.sourceforge.net/sourceforge/astyle/astyle_1.24_macosx.tar.gz'
|
|
md5 '9b63dadac58e867f14b3894befbdc9b3'
|
|
homepage 'http://astyle.sourceforge.net/'
|
|
|
|
def install
|
|
Dir.chdir 'src' do
|
|
ENV['prefix']=prefix
|
|
system "make -f ../build/mac/Makefile"
|
|
bin.install "bin/astyle"
|
|
end
|
|
end
|
|
end |