blob: 7e6d4c603f3e79a29ccb95c5e13ae91b093f6b46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
|