0ebfb2a582
The utility contacts affords easy access to information in the AddressBook database from the shell. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
13 lines
320 B
Ruby
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
|