278c4ba21e
Closes Homebrew/homebrew#12097. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
20 lines
516 B
Ruby
20 lines
516 B
Ruby
require 'formula'
|
|
|
|
class TodoTxt < Formula
|
|
homepage 'http://todotxt.com/'
|
|
url 'https://github.com/downloads/ginatrapani/todo.txt-cli/todo.txt_cli-2.9.tar.gz'
|
|
md5 'e815c63ab4e46285f0b0a30b7bac7918'
|
|
|
|
head 'https://github.com/ginatrapani/todo.txt-cli.git'
|
|
|
|
def install
|
|
bin.install 'todo.sh'
|
|
prefix.install 'todo.cfg' # Default config file
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
To configure, copy the default config to your home and edit it:
|
|
cp #{prefix}/todo.cfg ~/.todo.cfg
|
|
EOS
|
|
end
|
|
end
|