17 lines
411 B
Ruby
17 lines
411 B
Ruby
require 'formula'
|
|
|
|
class DwarfFortress < Formula
|
|
homepage 'http://www.bay12games.com/dwarves/'
|
|
url 'http://www.bay12games.com/dwarves/df_34_05_osx.tar.bz2'
|
|
version '0.34.05'
|
|
md5 '470dd5b1f75bdc2f567a10127b3708bf'
|
|
|
|
def install
|
|
(bin+'dwarffortress').write <<-EOS.undent
|
|
#!/bin/sh
|
|
exec #{libexec}/df
|
|
EOS
|
|
rm_rf 'sdl' # only contains a readme
|
|
libexec.install Dir['*']
|
|
end
|
|
end
|