homebrew-core/Formula/task.rb

19 lines
460 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.1.1.tar.gz'
sha1 'c23cb320f3478e37527c5c3cc547286f97bacc7c'
depends_on "cmake" => :build
skip_clean :all
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"
(etc+'bash_completion.d').install 'scripts/bash/task.sh'
(share+'zsh/site-functions').install 'scripts/zsh/_task'
end
2009-12-28 14:59:52 +00:00
end