21 lines
615 B
Ruby
21 lines
615 B
Ruby
require 'formula'
|
|
|
|
class Unrtf < Formula
|
|
homepage 'http://www.gnu.org/software/unrtf/'
|
|
url 'http://ftpmirror.gnu.org/unrtf/unrtf-0.21.2.tar.gz'
|
|
mirror 'http://ftp.gnu.org/gnu/unrtf/unrtf-0.21.2.tar.gz'
|
|
sha1 '207614a8dccc1334ae124a1734eabf3893602802'
|
|
|
|
# Per MacPorts, add a return value to fix compiling with clang, and fix
|
|
# a bad memory access.
|
|
def patches
|
|
{ :p0 => [
|
|
"https://trac.macports.org/export/94428/trunk/dports/textproc/unrtf/files/patch-src-attr.c.diff"
|
|
]}
|
|
end
|
|
|
|
def install
|
|
system "./configure", "LIBS=-liconv", "--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|