diff options
| author | Jannis Leidel | 2010-03-12 11:14:51 +0100 |
|---|---|---|
| committer | Adam Vandenberg | 2010-03-12 09:33:54 -0800 |
| commit | 2d6fbc26f0f70dfaff1a04b4e26fa285bcbfcf84 (patch) | |
| tree | a22efdea1f369a2a3dbff7a080f1d482baf52b72 /Library/Formula | |
| parent | 7373b9ff54af4dc08c99c42c47dd4c9584c78079 (diff) | |
| download | homebrew-2d6fbc26f0f70dfaff1a04b4e26fa285bcbfcf84.tar.bz2 | |
Added contacts.
The utility contacts affords easy access to information in the
AddressBook database from the shell.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/contacts.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/contacts.rb b/Library/Formula/contacts.rb new file mode 100644 index 000000000..1b4b3cb94 --- /dev/null +++ b/Library/Formula/contacts.rb @@ -0,0 +1,13 @@ +require 'formula' + +class Contacts <Formula + url 'http://www.gnufoo.org/contacts/contacts1.1.tgz' + homepage 'http://www.gnufoo.org/contacts/contacts.html' + md5 '37b6a6a0312dabc4ad2ddd8805f93e12' + + def install + system "make" + bin.install "build/Deployment/contacts" + man1.install gzip("contacts.1") + end +end |
