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>
15 lines
465 B
Ruby
15 lines
465 B
Ruby
require 'formula'
|
|
|
|
class Gdbm < Formula
|
|
url 'http://ftpmirror.gnu.org/gdbm/gdbm-1.9.1.tar.gz'
|
|
homepage 'http://www.gnu.org/software/gdbm/'
|
|
md5 '59f6e4c4193cb875964ffbe8aa384b58'
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--mandir=#{man}", "--infodir=#{info}"
|
|
inreplace "Makefile", "-o $(BINOWN) -g $(BINGRP)", ""
|
|
system "make install"
|
|
end
|
|
end
|