aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/task.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/Library/Formula/task.rb b/Library/Formula/task.rb
new file mode 100644
index 000000000..f879f209a
--- /dev/null
+++ b/Library/Formula/task.rb
@@ -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