aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/task.rb
blob: b2d1e8abac3d8a9496fe2b1b65ed352d8e8c7f9b (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.1.tar.gz'
  @homepage='http://www.taskwarrior.org/'
  @md5='f486d06a9440a7034516de2a31659d3a'

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

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