homebrew-core/Formula/pdfjam.rb
Xiyue Deng 97a6e57577 Make pdfjam use TeX requirement.
Closes Homebrew/homebrew#16568.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-01-13 18:25:53 -08:00

15 lines
423 B
Ruby

require 'formula'
class Pdfjam < Formula
url 'http://www2.warwick.ac.uk/fac/sci/statistics/staff/academic-research/firth/software/pdfjam/pdfjam_208.tgz'
homepage 'http://www2.warwick.ac.uk/fac/sci/statistics/staff/academic-research/firth/software/pdfjam'
sha1 '981b504ef96369a203f85fefb42d4ea0d1194493'
version '2.08'
depends_on :tex
def install
bin.install Dir['bin/*']
man.install 'man1'
end
end