aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/task.rb
blob: b84cb3abe131768d30920cc7926bb1fd4f9de6b6 (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='b9c12f60ff509c1ce5c6292041789baa'

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

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