Adding a formula for task
This commit is contained in:
parent
67fe99f417
commit
b245dbbb74
1 changed files with 19 additions and 0 deletions
19
Formula/task.rb
Normal file
19
Formula/task.rb
Normal 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
|
Loading…
Reference in a new issue