blob: 05f0fcbedc6abceaf18217183e1cf512957c2926 (
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_macosx.tar.gz'
md5 '16192ba46ba5348f107c712d6482c15a'
def install
cd 'src' do
system "make -f ../build/mac/Makefile"
bin.install "bin/astyle"
end
end
end
|