diff options
| author | Robert Baruch | 2012-05-28 11:45:48 -0400 | 
|---|---|---|
| committer | Adam Vandenberg | 2012-09-04 11:01:26 -0700 | 
| commit | 3e0cabb455cbd3c1de0a344d18de19ad8a28aeb6 (patch) | |
| tree | d205579045d4aaec6c1884bf91106290d3110b50 /Library/Formula/minidjvu.rb | |
| parent | 881f404a36b1ecc6a4b54c0fb8998d87a0c6611a (diff) | |
| download | homebrew-3e0cabb455cbd3c1de0a344d18de19ad8a28aeb6.tar.bz2 | |
minidjvu 0.8
Closes #12471.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/minidjvu.rb')
| -rw-r--r-- | Library/Formula/minidjvu.rb | 19 | 
1 files changed, 19 insertions, 0 deletions
diff --git a/Library/Formula/minidjvu.rb b/Library/Formula/minidjvu.rb new file mode 100644 index 000000000..6c4ddbfb2 --- /dev/null +++ b/Library/Formula/minidjvu.rb @@ -0,0 +1,19 @@ +require 'formula' + +class Minidjvu < Formula +  homepage 'http://minidjvu.sourceforge.net/' +  url 'http://sourceforge.net/projects/minidjvu/files/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  | 
