2009-12-28 14:59:52 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Task <Formula
|
2010-05-25 18:53:31 +00:00
|
|
|
url 'http://www.taskwarrior.org/download/task-1.9.1.tar.gz'
|
|
|
|
homepage 'http://www.taskwarrior.org/'
|
|
|
|
md5 'f486d06a9440a7034516de2a31659d3a'
|
|
|
|
|
|
|
|
def skip_clean? path
|
|
|
|
true
|
|
|
|
end
|
2009-12-28 14:59:52 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--disable-debug",
|
2010-05-25 18:53:31 +00:00
|
|
|
"--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
2009-12-28 14:59:52 +00:00
|
|
|
system "make install"
|
2010-05-25 18:53:31 +00:00
|
|
|
|
|
|
|
# Install the bash completion file
|
|
|
|
(etc+'bash_completion.d').install 'scripts/bash/task_completion.sh'
|
2009-12-28 14:59:52 +00:00
|
|
|
end
|
|
|
|
end
|