2012-12-09 15:09:59 +00:00
|
|
|
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
|
2014-02-25 15:47:37 +00:00
|
|
|
scons
|
2012-12-09 15:09:59 +00:00
|
|
|
bin.install 'bin/pplatex', 'bin/ppdflatex'
|
|
|
|
end
|
|
|
|
|
2014-02-23 21:31:41 +00:00
|
|
|
test do
|
2012-12-09 15:09:59 +00:00
|
|
|
system "#{bin}/pplatex", "-h"
|
|
|
|
end
|
|
|
|
end
|