diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/dvtm.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/dvtm.rb b/Library/Formula/dvtm.rb new file mode 100644 index 000000000..e314ecf9c --- /dev/null +++ b/Library/Formula/dvtm.rb @@ -0,0 +1,14 @@ +require 'formula' + +class Dvtm <Formula + url 'http://www.brain-dump.org/projects/dvtm/dvtm-0.5.2.tar.gz' + homepage 'http://www.brain-dump.org/projects/dvtm/' + md5 '7872b9e61705a4e9952655b3b88e4add' + head 'git clone 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 |
