aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/astyle.rb
blob: be3951e06381d3b2c20f3e06149b717980c62aeb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class Astyle < Formula
  homepage 'http://astyle.sourceforge.net/'
  url 'http://downloads.sourceforge.net/sourceforge/astyle/astyle_2.02.1_macosx.tar.gz'
  md5 '38f3a20be7ba685496d479316d6004b0'

  def install
    cd 'src' do
      system "make", "CXX=#{ENV.cxx}", "-f", "../build/mac/Makefile"
      bin.install "bin/astyle"
    end
  end
end