f7d4afc03b
Closes Homebrew/homebrew#10869. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
31 lines
769 B
Ruby
31 lines
769 B
Ruby
require 'formula'
|
|
|
|
class Task < Formula
|
|
homepage 'http://www.taskwarrior.org/'
|
|
url 'http://www.taskwarrior.org/download/task-1.9.4.tar.gz'
|
|
md5 '0c5d9dedb1ead69590af895d16708070'
|
|
|
|
skip_clean :all
|
|
|
|
devel do
|
|
url 'http://www.taskwarrior.org/download/task-2.0.0.RC1.tar.gz'
|
|
md5 '42333fa5a0ab3a6b058146182cbb7b1a'
|
|
version '2.0.0.rc1'
|
|
end
|
|
|
|
if ARGV.build_devel?
|
|
depends_on "cmake" => :build
|
|
end
|
|
|
|
def install
|
|
if ARGV.build_devel?
|
|
system "cmake", "-DCMAKE_INSTALL_PREFIX=#{prefix}"
|
|
else
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
end
|
|
|
|
system "make install"
|
|
(etc+'bash_completion.d').install 'scripts/bash/task_completion.sh'
|
|
end
|
|
end
|