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>
12 lines
290 B
Ruby
12 lines
290 B
Ruby
require 'formula'
|
|
|
|
class Shtool < Formula
|
|
url 'http://ftpmirror.gnu.org/shtool/shtool-2.0.8.tar.gz'
|
|
homepage 'http://www.gnu.org/software/shtool/'
|
|
md5 'c5f7c6836882d48bc79049846a5f9c5b'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|