homebrew-core/Formula/task.rb
Jake Bell 05fa53eccc Updating task to 1.9.2.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-07-15 17:16:50 -07:00

21 lines
536 B
Ruby

require 'formula'
class Task <Formula
url 'http://www.taskwarrior.org/download/task-1.9.2.tar.gz'
homepage 'http://www.taskwarrior.org/'
md5 'be98cc74fe03b8336250e0b7ed3cd8c7'
def skip_clean? path
true
end
def install
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
# Install the bash completion file
(etc+'bash_completion.d').install 'scripts/bash/task_completion.sh'
end
end