homebrew-core/Formula/dwarf-fortress.rb

18 lines
411 B
Ruby
Raw Normal View History

require 'formula'
class DwarfFortress < Formula
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'
version '0.34.05'
2012-03-11 04:01:40 +00:00
md5 '470dd5b1f75bdc2f567a10127b3708bf'
def install
2012-03-11 04:01:40 +00:00
(bin+'dwarffortress').write <<-EOS.undent
#!/bin/sh
exec #{libexec}/df
EOS
rm_rf 'sdl' # only contains a readme
2012-03-11 04:01:40 +00:00
libexec.install Dir['*']
end
end