blob: 7821016f8894015253544305df201485f757e79b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
  | 
require 'formula'
class Pdfjam <Formula
  url 'http://www2.warwick.ac.uk/fac/sci/statistics/staff/academic/firth/software/pdfjam/pdfjam_206.tgz'
  homepage 'http://www2.warwick.ac.uk/fac/sci/statistics/staff/academic/firth/software/pdfjam'
  md5 '8113cae5d43359708be9e7e9d6df999d'
  version '2.06'
  def install
    bin.install Dir['bin/*']
    man.install 'man1'
  end
end
  |