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
303 B
Ruby
12 lines
303 B
Ruby
require 'formula'
|
|
|
|
class Unrtf < Formula
|
|
url 'http://ftpmirror.gnu.org/unrtf/unrtf-0.21.2.tar.gz'
|
|
homepage 'http://www.gnu.org/software/unrtf/'
|
|
md5 'e0b38d8786f00704ec479a7d261808b8'
|
|
|
|
def install
|
|
system "./configure", "LIBS=-liconv", "--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|