2011-08-19 15:55:41 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-08-26 15:52:20 +00:00
|
|
|
class DwarfFortress < Formula
|
2011-08-19 15:55:41 +00:00
|
|
|
homepage 'http://www.bay12games.com/dwarves/'
|
2012-03-11 04:01:40 +00:00
|
|
|
url 'http://www.bay12games.com/dwarves/df_34_05_osx.tar.bz2'
|
2012-03-07 00:59:27 +00:00
|
|
|
version '0.34.05'
|
2012-03-11 04:01:40 +00:00
|
|
|
md5 '470dd5b1f75bdc2f567a10127b3708bf'
|
2011-08-19 15:55:41 +00:00
|
|
|
|
|
|
|
def install
|
2012-03-11 04:01:40 +00:00
|
|
|
(bin+'dwarffortress').write <<-EOS.undent
|
|
|
|
#!/bin/sh
|
|
|
|
exec #{libexec}/df
|
|
|
|
EOS
|
2011-08-19 15:55:41 +00:00
|
|
|
rm_rf 'sdl' # only contains a readme
|
2012-03-11 04:01:40 +00:00
|
|
|
libexec.install Dir['*']
|
2011-08-19 15:55:41 +00:00
|
|
|
end
|
|
|
|
end
|