aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/astyle.rb
blob: c611dcf4f77315ad6a686b51235790e8e06d7d69 (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/project/astyle/astyle/astyle%202.03/astyle_2.03_macosx.tar.gz'
  sha1 '60595f6a4704e9c2b9cc6a24c3276695dc6288b2'

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