homebrew-core/Formula/proof-general.rb

48 lines
1.4 KiB
Ruby

class ProofGeneral < Formula
desc "Emacs-based generic interface for theorem provers"
homepage "https://proofgeneral.github.io"
url "https://github.com/ProofGeneral/PG/archive/v4.4.tar.gz"
sha256 "1ba236d81768a87afa0287f49d4b2223097bc61d180468cbd997d46ab6132e7e"
head "https://github.com/ProofGeneral/PG.git"
bottle do
cellar :any_skip_relocation
sha256 "3a4a747470f8d159bc0e9e266ae3dd84444862adae85e2a01e0228de7936c43b" => :sierra
sha256 "3a4a747470f8d159bc0e9e266ae3dd84444862adae85e2a01e0228de7936c43b" => :el_capitan
sha256 "3a4a747470f8d159bc0e9e266ae3dd84444862adae85e2a01e0228de7936c43b" => :yosemite
end
depends_on "texi2html" => :build
depends_on :emacs => "22.3"
def install
ENV.deparallelize # Otherwise lisp compilation can result in 0-byte files
args = %W[
PREFIX=#{prefix}
DEST_PREFIX=#{prefix}
ELISPP=share/emacs/site-lisp/proof-general
ELISP_START=#{elisp}/site-start.d
EMACS=#{which "emacs"}
]
system "make", "install", *args
cd "doc" do
system "make", "info", "html"
end
man1.install "doc/proofgeneral.1"
info.install "doc/ProofGeneral.info", "doc/PG-adapting.info"
doc.install "doc/ProofGeneral", "doc/PG-adapting"
end
def caveats; <<-EOS.undent
HTML documentation is available in: #{HOMEBREW_PREFIX}/share/doc/proof-general
EOS
end
test do
system bin/"proofgeneral", "--help"
end
end