aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPierre Riteau2010-09-09 19:57:49 +0200
committerAdam Vandenberg2010-10-30 20:53:29 -0700
commitff82919d38c13e9cc10b1c70733214b0927458bd (patch)
tree690dbb011acb583c1f741cf00bcb1789f298469a
parent61f24d67ca737745826305bd82d732fbb68e9f1e (diff)
downloadhomebrew-ff82919d38c13e9cc10b1c70733214b0927458bd.tar.bz2
New formula: PDFjam
PDFjam is a small collection of shell scripts which provide a simple interface to much of the functionality of the excellent pdfpages package (by Andreas Matthias) for pdfLaTeX. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
-rw-r--r--Library/Formula/pdfjam.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/pdfjam.rb b/Library/Formula/pdfjam.rb
new file mode 100644
index 000000000..2ad16923f
--- /dev/null
+++ b/Library/Formula/pdfjam.rb
@@ -0,0 +1,12 @@
+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'
+
+ def install
+ bin.install Dir['bin/*']
+ man.install 'man1'
+ end
+end