blob: 84a4441f2074ff476d61f14bfbeea9e914626237 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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
|