cecf4b5279
Signed-off-by: Brett Koonce <koonce@gmail.com>
14 lines
453 B
Ruby
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
|