homebrew-core/Formula/diffpdf.rb
chdiza 8bcae8b734 diffpdf: Update homepage URL
diffpdf is going commercial, but version 2.1.3---the last
open-source one---is still available.  Its homepage has changed.

Closes Homebrew/homebrew#25341.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-12-20 10:16:43 -06:00

28 lines
751 B
Ruby

require 'formula'
class Diffpdf < Formula
homepage 'http://www.qtrac.eu/diffpdf-foss.html'
url 'http://www.qtrac.eu/diffpdf-2.1.3.tar.gz'
sha1 '663ecb7666a4b7d6fbd1a37327fd1f895fae69b8'
depends_on 'qt'
depends_on 'poppler' => 'with-qt4'
def install
# The 2.0 sources shipped without translation files. Generate them so that
# compilation does not fail.
system 'lrelease', 'diffpdf.pro'
# Generate makefile and disable .app creation
if MacOS.version >= :mavericks && ENV.compiler == :clang
spec = 'unsupported/macx-clang-libc++'
else
spec = 'macx-g++'
end
system 'qmake', '-spec', spec, 'CONFIG-=app_bundle'
system 'make'
bin.install 'diffpdf'
man1.install 'diffpdf.1'
end
end