blob: 9b8c5b7bd66aa96ff50f67ff0f82b56882806f3c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class Unrtf < Formula
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'
homepage 'http://www.gnu.org/software/unrtf/'
md5 'e0b38d8786f00704ec479a7d261808b8'
def install
system "./configure", "LIBS=-liconv", "--prefix=#{prefix}"
system "make install"
end
end
|