blob: 05f2ee4cb9dd17a1d3084761706d65ba5e6a48eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class Hostdb <Formula
url 'http://hostdb.googlecode.com/files/hostdb-1.004.tgz'
homepage 'http://code.google.com/p/hostdb/'
md5 'dfe0bf011f6e2117011aaae3ee2246b2'
def install
bin.install Dir['bin/*']
doc.install Dir['docs/*']
(share+'examples'+name).install Dir['examples/*']
end
end
|