writerperfect 0.8.0
writerperfect is a *nix binary wpd2odt that can convert a Wordperfect wpd document to an Open Office / LibreOffice odt document from the command line. http://libwpd.sourceforge.net/index.html Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
67f41b7172
commit
e93fc2d247
1 changed files with 17 additions and 0 deletions
17
Formula/writerperfect.rb
Normal file
17
Formula/writerperfect.rb
Normal file
|
@ -0,0 +1,17 @@
|
|||
require 'formula'
|
||||
|
||||
class Writerperfect < Formula
|
||||
url 'http://downloads.sourceforge.net/libwpd/writerperfect-0.8.0.tar.bz2'
|
||||
md5 'cb55b682737ee99cff9c632f0b360372'
|
||||
homepage 'http://libwpd.sourceforge.net/'
|
||||
|
||||
depends_on 'pkg-config' => :build
|
||||
depends_on "libwpg"
|
||||
depends_on "libwpd"
|
||||
|
||||
def install
|
||||
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
||||
"--prefix=#{prefix}"
|
||||
system "make install"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue