aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Holm2014-05-01 10:10:05 +0200
committerAdam Vandenberg2014-05-02 21:11:37 -0700
commit69224b6b8b7ec39a52a23704bdfdb27e91b413f6 (patch)
tree2b5c0835950e0d0049972acc7a29bc4ceb3b029a
parent944b45c3b0921f9a014e06198316f231914c23e9 (diff)
downloadhomebrew-69224b6b8b7ec39a52a23704bdfdb27e91b413f6.tar.bz2
unoconv 0.6
Closes #28879. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
-rw-r--r--Library/Formula/unoconv.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/Library/Formula/unoconv.rb b/Library/Formula/unoconv.rb
new file mode 100644
index 000000000..cea5ed274
--- /dev/null
+++ b/Library/Formula/unoconv.rb
@@ -0,0 +1,19 @@
+require "formula"
+
+class Unoconv < Formula
+ homepage "http://dag.wiee.rs/home-made/unoconv/"
+ url "http://dag.wieers.com/home-made/unoconv/unoconv-0.6.tar.gz"
+ sha1 "d6c3574639b9ceedcb866b84f18ba7158f25db48"
+ head "https://github.com/dagwieers/unoconv.git"
+
+ depends_on :python
+
+ def install
+ system "make", "install", "prefix=#{prefix}"
+ end
+
+ def caveats; <<-EOS.undent
+ In order to use unoconv LibreOffice 3.6.0.1 or later must be installed.
+ EOS
+ end
+end