homebrew-core/Formula/task.rb

17 lines
415 B
Ruby
Raw Normal View History

2009-12-28 14:59:52 +00:00
require 'formula'
2011-03-10 05:11:03 +00:00
class Task < Formula
homepage 'http://www.taskwarrior.org/'
url 'http://www.taskwarrior.org/download/task-2.2.0.tar.gz'
sha1 '70656deb48a460f95370c885e388b475475f64eb'
depends_on "cmake" => :build
2009-12-28 14:59:52 +00:00
def install
system "cmake", ".", *std_cmake_args
2009-12-28 14:59:52 +00:00
system "make install"
2013-05-03 18:03:31 +00:00
bash_completion.install 'scripts/bash/task.sh'
zsh_completion.install 'scripts/zsh/_task'
end
2009-12-28 14:59:52 +00:00
end