aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/task.rb
blob: 1362285711948672c12f319d7d828ed8a1959446 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require 'formula'

class Task <Formula
  @url='http://www.taskwarrior.org/download/task-1.9.0.tar.gz'
  @homepage='http://www.taskwarrior.org/'
  @md5='0e9f5b6ffdf15509eb5657ae3cc6fe2ef029f8e1'

  def install
    system "./configure", "--disable-debug",
                          "--prefix=#{prefix}",
                          "--disable-dependency-tracking"

    system "make install"
  end
  
  def skip_clean? path
    true
  end
end