blob: a71ef028209f046179b604e45c93dcef0dd7c81d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
require 'formula'
class Minidjvu < Formula
homepage 'http://minidjvu.sourceforge.net/'
url 'http://downloads.sourceforge.net/project/minidjvu/minidjvu/0.8/minidjvu-0.8.tar.gz'
sha1 '23835f73bc3580b72c6afe1f77feaf1e2611e714'
depends_on 'djvulibre'
depends_on 'libtiff'
def install
ENV.j1
system "./configure", "--prefix=#{prefix}"
system "make"
system "make install"
lib.install Dir["#{prefix}/*.dylib"]
end
end
|