diff options
| author | Brett Koonce | 2014-08-21 19:47:26 -0700 |
|---|---|---|
| committer | Brett Koonce | 2014-08-21 23:58:03 -0700 |
| commit | fe4f449c85b33e1b0eac1568b1bc04846fa2258a (patch) | |
| tree | e9041536c8c3c9c4fdb497c67a063487f16656db /Library | |
| parent | ecaf1465681b99adec736480f3f477b2f5e79db5 (diff) | |
| download | homebrew-fe4f449c85b33e1b0eac1568b1bc04846fa2258a.tar.bz2 | |
dvtm 0.12
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/dvtm.rb | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Library/Formula/dvtm.rb b/Library/Formula/dvtm.rb index 099c58177..1843cd908 100644 --- a/Library/Formula/dvtm.rb +++ b/Library/Formula/dvtm.rb @@ -1,14 +1,14 @@ -require 'formula' +require "formula" class Dvtm < Formula - homepage 'http://www.brain-dump.org/projects/dvtm/' - url 'http://www.brain-dump.org/projects/dvtm/dvtm-0.11.tar.gz' - sha1 'f82927afb88e3745dfed11fd39e5f6f9e956099e' - head 'git://repo.or.cz/dvtm.git' + homepage "http://www.brain-dump.org/projects/dvtm/" + url "http://www.brain-dump.org/projects/dvtm/dvtm-0.12.tar.gz" + sha1 "1b433db25d9751e820fc8213874eb57fd15e5552" + 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' + inreplace "config.mk", "LIBS = -lc -lutil -lncursesw", "LIBS = -lc -lutil -lncurses" + inreplace "Makefile", "strip -s", "strip" system "make", "PREFIX=#{prefix}", "install" end end |
