fa3d89a7c0
It seems that the main GNU download site has issues in some places outside the U.S., so we'll use the provided "ftpmirror.gnu.org" to pick a nearby mirror. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
13 lines
371 B
Ruby
13 lines
371 B
Ruby
require 'formula'
|
|
|
|
class Diction < Formula
|
|
url 'http://ftpmirror.gnu.org/diction/diction-1.11.tar.gz'
|
|
homepage 'http://www.gnu.org/software/diction/'
|
|
md5 '4cbdb115c976d7141f54b223df28012e'
|
|
|
|
def install
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|