2009-11-12 21:10:09 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Unison < Formula
|
2012-01-07 12:55:22 +00:00
|
|
|
url 'http://www.seas.upenn.edu/~bcpierce/unison/download/releases/unison-2.40.63/unison-2.40.63.tar.gz'
|
2009-11-12 21:10:09 +00:00
|
|
|
homepage 'http://www.cis.upenn.edu/~bcpierce/unison/'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 '645e70bc37a5d4e8e9ccb7bad065fc579b18cf75'
|
2009-11-12 21:10:09 +00:00
|
|
|
|
|
|
|
depends_on 'objective-caml'
|
|
|
|
|
|
|
|
def install
|
|
|
|
ENV.j1
|
|
|
|
ENV.delete "CFLAGS" # ocamlopt reads CFLAGS but doesn't understand common options
|
2011-06-13 16:21:19 +00:00
|
|
|
system "make ./mkProjectInfo"
|
2009-11-12 21:10:09 +00:00
|
|
|
system "make UISTYLE=text"
|
|
|
|
bin.install 'unison'
|
|
|
|
end
|
|
|
|
end
|