2010-07-01 18:59:12 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Boxes <Formula
|
|
|
|
url 'http://boxes.thomasjensen.com/download/boxes-1.1.src.tar.gz'
|
|
|
|
homepage 'http://boxes.thomasjensen.com/'
|
|
|
|
md5 'd2ef9fa28a87bf32b3fe0c47ab82fa97'
|
|
|
|
|
|
|
|
def install
|
|
|
|
# distro uses /usr/share/boxes change to prefix
|
2010-04-07 05:58:35 +00:00
|
|
|
inreplace 'Makefile' do |s|
|
|
|
|
s.change_make_var! "GLOBALCONF", "#{share}/boxes-config"
|
2010-07-01 18:59:12 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
system "make"
|
|
|
|
|
|
|
|
# No make install have to manually copy files
|
|
|
|
bin.install 'src/boxes'
|
|
|
|
man1.install 'doc/boxes.1'
|
|
|
|
share.install 'boxes-config'
|
|
|
|
end
|
|
|
|
end
|