2009-12-28 14:59:52 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Task < Formula
|
2010-05-25 18:53:31 +00:00
|
|
|
homepage 'http://www.taskwarrior.org/'
|
2013-04-07 20:50:14 +00:00
|
|
|
url 'http://www.taskwarrior.org/download/task-2.2.0.tar.gz'
|
|
|
|
sha1 '70656deb48a460f95370c885e388b475475f64eb'
|
2010-05-25 18:53:31 +00:00
|
|
|
|
2012-03-18 10:54:15 +00:00
|
|
|
depends_on "cmake" => :build
|
2012-03-11 23:55:07 +00:00
|
|
|
|
2009-12-28 14:59:52 +00:00
|
|
|
def install
|
2012-05-22 21:37:04 +00:00
|
|
|
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'
|
2012-04-29 07:03:19 +00:00
|
|
|
end
|
2009-12-28 14:59:52 +00:00
|
|
|
end
|