homebrew-core/Formula/task.rb
lepht 58a0cd2bc9 taskwarrior 2.0
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-03-18 10:27:24 -07:00

17 lines
410 B
Ruby

require 'formula'
class Task < Formula
homepage 'http://www.taskwarrior.org/'
url 'http://www.taskwarrior.org/download/task-2.0.0.tar.gz'
sha1 'dc587363fbdc1dcac7f7e07b1bccfd1fb56b2435'
depends_on "cmake" => :build
skip_clean :all
def install
system "cmake #{std_cmake_parameters}"
system "make install"
(etc+'bash_completion.d').install 'scripts/bash/task_completion.sh'
end
end