homebrew-core/Formula/dvtm.rb
Alexis Hildebrandt 5300c6cd87 Update Formula: dvtm to 0.6
Signed-off-by: Adam Vandenberg <flangy@gmail.com>

Fixes Homebrew/homebrew#3033
2010-11-02 18:43:49 -07:00

14 lines
436 B
Ruby

require 'formula'
class Dvtm <Formula
url 'http://www.brain-dump.org/projects/dvtm/dvtm-0.6.tar.gz'
homepage 'http://www.brain-dump.org/projects/dvtm/'
md5 'db77a3744868dd91a5ae5ad98b7df709'
head 'git://repo.or.cz/dvtm.git'
def install
inreplace 'config.mk', 'LIBS = -lc -lutil -lncursesw', 'LIBS = -lc -lutil -lncurses'
inreplace 'Makefile', 'strip -s', 'strip'
system "make PREFIX=#{prefix} install"
end
end