blob: e788cdf93fee804c1ffa891855dcf1a3e717d79f (
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/'
sha1 '65ec59c2c88b763813fa611d8fd28a45cd9d5278'
def install
bin.install Dir['bin/*']
doc.install Dir['docs/*']
(share+'examples'+name).install Dir['examples/*']
end
end
|