aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAlexis Hildebrandt2009-12-28 18:33:31 +0100
committerMax Howell2010-01-24 12:27:39 +0000
commitb9449cf94adf80c4c666a6cc1e39aba4e07bf9f3 (patch)
tree237b05356b72170172f31dbd46ea59e5f4873da6 /Library
parent6087511a40a70a1ff4e1c2fb4b14339a3140a7f5 (diff)
downloadhomebrew-b9449cf94adf80c4c666a6cc1e39aba4e07bf9f3.tar.bz2
Dvtm 0.5.2
Dvtm brings the concept of tiling window management, popularized by X11-window managers like dwm to the console. As a console window manager it tries to make it easy to work with multiple console based programs like vim, mutt, cmus or irssi.
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/dvtm.rb14
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