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>
16 lines
504 B
Ruby
16 lines
504 B
Ruby
require 'formula'
|
|
|
|
class Lightning < Formula
|
|
url 'http://ftpmirror.gnu.org/lightning/lightning-1.2.tar.gz'
|
|
md5 'dcd2c46ee4dd5d99edd9930022ad2153'
|
|
homepage 'http://www.gnu.org/software/lightning/'
|
|
|
|
def install
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--mandir=#{man}",
|
|
"--infodir=#{info}"
|
|
system "make install"
|
|
include.install "lightning.h"
|
|
end
|
|
end
|