MESS 146u3

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
John Harrison 2012-07-22 23:13:39 -07:00 committed by Adam Vandenberg
parent db9622ddb9
commit c87d542cdd
1 changed files with 26 additions and 0 deletions

26
Formula/mess.rb Normal file
View File

@ -0,0 +1,26 @@
require 'formula'
class Mess < Formula
homepage 'http://www.mess.org/'
url 'svn://messdev.no-ip.org/mess', :revision => 15603
version '146u3'
head 'svn://messdev.no-ip.org/mess'
depends_on :x11
depends_on 'sdl'
def install
ENV['MACOSX_USE_LIBSDL'] = '1'
ENV['INCPATH'] = "-I./src/lib/util -I#{MacOS.x11_prefix}/include"
ENV['PTR64'] = (MacOS.prefer_64_bit? ? '1' : '0')
system 'make'
if MacOS.prefer_64_bit?
bin.install 'mess64' => 'mess'
else
bin.install 'mess'
end
end
end