aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/dvtm.rb
blob: 23e6b9389e7b16de92012834de43fdce68416bbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class Dvtm < Formula
  url 'http://www.brain-dump.org/projects/dvtm/dvtm-0.7.tar.gz'
  homepage 'http://www.brain-dump.org/projects/dvtm/'
  md5 'd8ef63bad5b48324ad040630c51a1c26'
  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