aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorchrisatkin2012-12-09 15:09:59 +0000
committerAdam Vandenberg2013-01-01 19:33:35 -0800
commitb6ca043065649bad0d9877ae3c9a2c26eee6b10a (patch)
treeb3b670e4dc8765c700dc632c13fd09e46b419576
parent7d3379af0efda079ab4617a20669ad078d3d092a (diff)
downloadhomebrew-b6ca043065649bad0d9877ae3c9a2c26eee6b10a.tar.bz2
pplatex 1.0-rc1
Closes #16491. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
-rw-r--r--Library/Formula/pplatex.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/Library/Formula/pplatex.rb b/Library/Formula/pplatex.rb
new file mode 100644
index 000000000..9c36d9cf1
--- /dev/null
+++ b/Library/Formula/pplatex.rb
@@ -0,0 +1,19 @@
+require 'formula'
+
+class Pplatex < Formula
+ homepage 'http://www.stefant.org/web/projects/software/pplatex.html'
+ url 'http://dl.dropbox.com/u/12697903/pplatex/pplatex-1.0-rc1-src.tar.gz'
+ sha1 'd437c64a8263eeb45ded4f57df8cce29080a92d0'
+
+ depends_on 'scons' => :build
+ depends_on 'pcre'
+
+ def install
+ system 'scons'
+ bin.install 'bin/pplatex', 'bin/ppdflatex'
+ end
+
+ def test
+ system "#{bin}/pplatex", "-h"
+ end
+end