homebrew-core/Formula/task.rb
Jakub Turski aee6c3ef08 taskwarrior 1.9.4
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-03-04 15:38:52 -08:00

18 lines
490 B
Ruby

require 'formula'
class Task <Formula
url 'http://www.taskwarrior.org/download/task-1.9.4.tar.gz'
homepage 'http://www.taskwarrior.org/'
md5 '0c5d9dedb1ead69590af895d16708070'
skip_clean :all
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