homebrew-core/Formula/contacts.rb
Jannis Leidel 0ebfb2a582 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>
2010-03-12 09:33:54 -08:00

13 lines
320 B
Ruby

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