blob: f6aed85f9c1816eace6d86fa14d76cf99cbe3094 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  | 
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
  |