diff options
| author | Alexis Hildebrandt | 2015-01-02 18:06:22 +0100 |
|---|---|---|
| committer | Jack Nagel | 2015-01-12 20:50:23 -0500 |
| commit | f53747e0b5e4a694c77e2e9b4c6a7fae3b766a50 (patch) | |
| tree | fa79c4ddaf00c1a5416d22659da9b19a292e372c /Library | |
| parent | d989927d3fa5debf8b6633ad58b3b824a47eba03 (diff) | |
| download | homebrew-f53747e0b5e4a694c77e2e9b4c6a7fae3b766a50.tar.bz2 | |
dvtm 0.13
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/dvtm.rb | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/Library/Formula/dvtm.rb b/Library/Formula/dvtm.rb index 1843cd908..ebe9ddd3f 100644 --- a/Library/Formula/dvtm.rb +++ b/Library/Formula/dvtm.rb @@ -2,13 +2,12 @@ require "formula" class Dvtm < Formula homepage "http://www.brain-dump.org/projects/dvtm/" - url "http://www.brain-dump.org/projects/dvtm/dvtm-0.12.tar.gz" - sha1 "1b433db25d9751e820fc8213874eb57fd15e5552" + url "http://www.brain-dump.org/projects/dvtm/dvtm-0.13.tar.gz" + sha1 "8a4fc2440faa3050244e5a492fb6766899e0c0d7" 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" + ENV.append_to_cflags "-D_DARWIN_C_SOURCE" + system "make", "PREFIX=#{prefix}", "LIBS=-lc -lutil -lncurses", "install" end end |
