homebrew-core/Formula/dict.rb
Nicolas Despres 5c10e50edf Fix 'dict' formula.
- Use a valid URL (it has been reported to webmaster@dict.org).
- Install man page in 'share/'.
- Write 'etc/dict.conf' in its Cellar instead of HOMEBREW_PREFIX.
- Remove Ruby warning.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-01-28 12:30:08 -08:00

36 lines
1.3 KiB
Ruby

require 'formula'
class Dict < Formula
url 'http://en.sourceforge.jp/frs/g_redir.php?m=jaist&f=%2Fdict%2Fdictd%2Fdictd-1.9.15%2Fdictd-1.9.15.tar.gz'
homepage 'http://www.dict.org/'
md5 '68c1cffa952012ba85a7271311de55e9'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--sysconfdir=#{etc}",
"--mandir=#{man}"
# install the client
system "make install.dict"
# set up the conf file
(prefix+'etc/dict.conf').write <<-EOS
# /etc/dict.conf Written by Bob Hilliard <hilliard@debian.org>
# 1998/03/20. Last revised Sun, 22 Nov 1998 18:10:04 -0500 This is
# the configuration file for /usr/bin/dict. In most cases only the
# server keyword need be specified.
# This default configuration will try to access a dictd server on the
# local host, failing that, it will try the public server. In many
# cases this will be slow, so you should comment out the line for the
# server that you don't want to use. To use any other server, enter
# its IP address in place of "dict.org".
# Refer to the dict manpage (man dict) for other options that could
# be inserted in here.
server localhost
server dict.org
EOS
end
end