diff options
| author | Jack Nagel | 2013-08-22 18:18:02 -0500 |
|---|---|---|
| committer | Jack Nagel | 2013-08-22 18:19:20 -0500 |
| commit | a6867e5f8586b1bf30f61b727c4f96ad19383271 (patch) | |
| tree | 5f55056cb0f801b99d949a0ba7abacb1bd5cdae7 /Library/Formula | |
| parent | f8b3d6dda23d8361b4e6a34aa786bd3e0a350f09 (diff) | |
| download | homebrew-a6867e5f8586b1bf30f61b727c4f96ad19383271.tar.bz2 | |
djvulibre 3.5.25.4
Closes #22076.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/djvulibre.rb | 27 |
1 files changed, 3 insertions, 24 deletions
diff --git a/Library/Formula/djvulibre.rb b/Library/Formula/djvulibre.rb index 85da02227..8475d4ce9 100644 --- a/Library/Formula/djvulibre.rb +++ b/Library/Formula/djvulibre.rb @@ -2,36 +2,15 @@ require 'formula' class Djvulibre < Formula homepage 'http://djvu.sourceforge.net/' - url 'http://downloads.sourceforge.net/project/djvu/DjVuLibre/3.5.25/djvulibre-3.5.25.3.tar.gz' - sha1 'ad35056aabb1950f385360ff59520a82a6f779ec' + url 'http://ftp.de.debian.org/debian/pool/main/d/djvulibre/djvulibre_3.5.25.4.orig.tar.gz' + sha1 'c7044201703f30df0f1732c54c6544467412811d' depends_on 'jpeg' depends_on 'libtiff' - # Remove this at version >= 3.5.25.4. This fixes compile errors where - # INKSCAPE is not found. Reported upstream and fixed in git. - # https://sourceforge.net/tracker/?func=detail&atid=406583&aid=3534102&group_id=32953 - def patches - 'http://djvu.git.sourceforge.net/git/gitweb.cgi?p=djvu/djvulibre.git;a=patch;h=b41a5ac4013ec7dbeeabb88816857581a100ee78' - end - def install - # Several pngs are missing. Reported upstream and fixed in git head. - # https://sourceforge.net/tracker/?func=detail&aid=3534280&group_id=32953&atid=406583 - # http://djvu.git.sourceforge.net/git/gitweb.cgi?p=djvu/djvulibre.git;a=commit;h=67b4df35e5b7806f9f065253d240ce0529aae52e - # Remove at version >= 3.5.25.4 - cd 'desktopfiles' do - curl '-s', '-o', 'prebuilt-hi128-djvu.png', 'http://djvu.git.sourceforge.net/git/gitweb.cgi?p=djvu/djvulibre.git;a=blob_plain;f=desktopfiles/prebuilt-hi128-djvu.png;hb=HEAD' - curl '-s', '-o', 'prebuilt-hi16-djvu.png', 'http://djvu.git.sourceforge.net/git/gitweb.cgi?p=djvu/djvulibre.git;a=blob_plain;f=desktopfiles/prebuilt-hi16-djvu.png;hb=HEAD' - curl '-s', '-o', 'prebuilt-hi20-djvu.png', 'http://djvu.git.sourceforge.net/git/gitweb.cgi?p=djvu/djvulibre.git;a=blob_plain;f=desktopfiles/prebuilt-hi20-djvu.png;hb=HEAD' - curl '-s', '-o', 'prebuilt-hi24-djvu.png', 'http://djvu.git.sourceforge.net/git/gitweb.cgi?p=djvu/djvulibre.git;a=blob_plain;f=desktopfiles/prebuilt-hi24-djvu.png;hb=HEAD' - curl '-s', '-o', 'prebuilt-hi256-djvu.png', 'http://djvu.git.sourceforge.net/git/gitweb.cgi?p=djvu/djvulibre.git;a=blob_plain;f=desktopfiles/prebuilt-hi256-djvu.png;hb=HEAD' - curl '-s', '-o', 'prebuilt-hi72-djvu.png', 'http://djvu.git.sourceforge.net/git/gitweb.cgi?p=djvu/djvulibre.git;a=blob_plain;f=desktopfiles/prebuilt-hi72-djvu.png;hb=HEAD' - curl '-s', '-o', 'prebuilt-hi96-djvu.png', 'http://djvu.git.sourceforge.net/git/gitweb.cgi?p=djvu/djvulibre.git;a=blob_plain;f=desktopfiles/prebuilt-hi96-djvu.png;hb=HEAD' - end - # Don't build X11 GUI apps, Spotlight Importer or QuickLook plugin - system './configure', "--prefix=#{prefix}", '--disable-desktopfiles' + system "./configure", "--prefix=#{prefix}", "--disable-desktopfiles" system "make" system "make install" end |
