Adding a formula for task

This commit is contained in:
Clarke Retzer 2009-12-28 06:59:52 -08:00 committed by David Höppner
parent 67fe99f417
commit b245dbbb74

19
Formula/task.rb Normal file
View file

@ -0,0 +1,19 @@
require 'formula'
class Task <Formula
@url='http://www.taskwarrior.org/download/task-1.8.5.tar.gz'
@homepage='http://www.taskwarrior.org/'
@md5='b7e5ab3abf624027068d9a01bf684035'
def install
system "./configure", "--disable-debug",
"--prefix=#{prefix}",
"--disable-dependency-tracking"
system "make install"
end
def skip_clean? path
true
end
end