aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/unrtf.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/unrtf.rb b/Library/Formula/unrtf.rb
new file mode 100644
index 000000000..e1eafae07
--- /dev/null
+++ b/Library/Formula/unrtf.rb
@@ -0,0 +1,12 @@
+require 'formula'
+
+class Unrtf < Formula
+ url '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