blob: 7e2b072bd10944b135d00a6428a5dd87a4f808b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require 'formula'
class Dvtm < Formula
homepage 'http://www.brain-dump.org/projects/dvtm/'
url 'http://www.brain-dump.org/projects/dvtm/dvtm-0.8.tar.gz'
sha1 '367fe528010a69c705cd046f63201c61086c14ec'
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
|