djvu2pdf 0.9.2

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Semyon Perepelitsa 2011-09-14 13:20:28 +04:00 committed by Adam Vandenberg
parent 59e01d2784
commit 882a9b28a6
1 changed files with 19 additions and 0 deletions

19
Formula/djvu2pdf.rb Normal file
View File

@ -0,0 +1,19 @@
require 'formula'
class Djvu2pdf < Formula
url 'http://0x2a.at/site/projects/djvu2pdf/djvu2pdf-0.9.2.tar.gz'
homepage 'http://0x2a.at/s/projects/djvu2pdf'
md5 'af93c29a857a014f86dffcff6c773ef1'
depends_on 'djvulibre'
depends_on 'ghostscript'
def install
bin.install 'djvu2pdf'
man1.install 'djvu2pdf.1.gz'
end
def test
system "#{bin}/djvu2pdf", "-h"
end
end