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>
This commit is contained in:
Jannis Leidel 2010-03-12 11:14:51 +01:00 committed by Adam Vandenberg
parent 681d19173a
commit 0ebfb2a582

13
Formula/contacts.rb Normal file
View file

@ -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