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/'
|
2014-01-20 06:43:01 +00:00
|
|
|
url 'http://www.taskwarrior.org/download/task-2.3.0.tar.gz'
|
|
|
|
sha1 'b5390a1c1232bcb727f5a595ac1141184810d09d'
|
2014-02-14 20:31:29 +00:00
|
|
|
head 'git://tasktools.org/task.git', :branch => '2.4.0', :shallow => false
|
2010-05-25 18:53:31 +00:00
|
|
|
|
2012-03-18 10:54:15 +00:00
|
|
|
depends_on "cmake" => :build
|
2014-01-20 06:43:01 +00:00
|
|
|
depends_on "gnutls" => :optional
|
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
|
2013-11-20 22:16:22 +00:00
|
|
|
|
|
|
|
test do
|
|
|
|
system "#{bin}/task", "--version"
|
|
|
|
end
|
2009-12-28 14:59:52 +00:00
|
|
|
end
|