homebrew-core/Formula/dvtm.rb
Brett Koonce cecf4b5279 dvtm 0.10
Signed-off-by: Brett Koonce <koonce@gmail.com>
2014-01-18 16:35:23 -06:00

14 lines
453 B
Ruby

require 'formula'
class Dvtm < Formula
homepage 'http://www.brain-dump.org/projects/dvtm/'
url 'http://www.brain-dump.org/projects/dvtm/dvtm-0.10.tar.gz'
sha1 '00e3d6cb746f8eace07e6784452d53781e76db13'
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