diff options
| author | Tom Taylor | 2013-07-10 15:20:24 +0100 |
|---|---|---|
| committer | Adam Vandenberg | 2013-09-15 11:44:27 -0700 |
| commit | 2a73ff7a29562da20a543bbbaeaca92d026825b0 (patch) | |
| tree | 4ef028839176bc48b9c7695cc0b1e7e99263a232 /Library/Formula | |
| parent | b08950c2205006a1bfe12015251e1d8fb39b43a6 (diff) | |
| download | homebrew-2a73ff7a29562da20a543bbbaeaca92d026825b0.tar.bz2 | |
comparepdf 1.0.1
Closes #21120.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/comparepdf.rb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Library/Formula/comparepdf.rb b/Library/Formula/comparepdf.rb new file mode 100644 index 000000000..314b11c9d --- /dev/null +++ b/Library/Formula/comparepdf.rb @@ -0,0 +1,19 @@ +require 'formula' + +class Comparepdf < Formula + homepage 'http://www.qtrac.eu/comparepdf.html' + url 'http://www.qtrac.eu/comparepdf-1.0.1.tar.gz' + sha1 '01774dac78dca9b712d55bfdbaf58c4b0bd31295' + + depends_on 'qt' + depends_on 'poppler' => 'with-qt4' + + def install + # Generate makefile and disable .app creation + system 'qmake -spec macx-g++ CONFIG-=app_bundle' + system 'make' + + bin.install 'comparepdf' + man1.install 'comparepdf.1' + end +end |
