52 lines
1.6 KiB
Ruby
52 lines
1.6 KiB
Ruby
class MathComp < Formula
|
|
desc "Mathematical Components for the Coq proof assistant"
|
|
homepage "https://math-comp.github.io/math-comp/"
|
|
url "https://github.com/math-comp/math-comp/archive/mathcomp-1.7.0.tar.gz"
|
|
sha256 "69c01e99aad618fa9a0bb4a19af00827c505b8205816eb590e51abca49f4ef17"
|
|
revision 4
|
|
head "https://github.com/math-comp/math-comp.git"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "5ff6c2af09955fa17c0624b83a9766c79808477e841c55234ad833e1bb9c776d" => :mojave
|
|
sha256 "bebb25127c5f618cd110c3dcc95b1570fee01fa4567fb77b488a7e6adbddf0b4" => :high_sierra
|
|
sha256 "f730702a54d8af025c86b2f1aaef8d0f949dcccb4c8982b5c7d301107469c88f" => :sierra
|
|
end
|
|
|
|
depends_on "ocaml" => :build
|
|
depends_on "coq"
|
|
|
|
def install
|
|
coqlib = "#{lib}/coq/"
|
|
|
|
(buildpath/"mathcomp/Makefile.coq.local").write <<~EOS
|
|
COQLIB=#{coqlib}
|
|
EOS
|
|
|
|
cd "mathcomp" do
|
|
system "make", "Makefile.coq"
|
|
system "make", "-f", "Makefile.coq", "MAKEFLAGS=#{ENV["MAKEFLAGS"]}"
|
|
system "make", "install", "MAKEFLAGS=#{ENV["MAKEFLAGS"]}"
|
|
|
|
elisp.install "ssreflect/pg-ssr.el"
|
|
end
|
|
|
|
doc.install Dir["docs/*"]
|
|
end
|
|
|
|
test do
|
|
(testpath/"testing.v").write <<~EOS
|
|
From mathcomp Require Import ssreflect seq.
|
|
|
|
Parameter T: Type.
|
|
Theorem test (s1 s2: seq T): size (s1 ++ s2) = size s1 + size s2.
|
|
Proof. by elim : s1 =>//= x s1 ->. Qed.
|
|
|
|
Check test.
|
|
EOS
|
|
|
|
coqc = Formula["coq"].opt_bin/"coqc"
|
|
cmd = "#{coqc} -R #{lib}/coq/user-contrib/mathcomp mathcomp testing.v"
|
|
assert_match /\Atest\s+: forall/, shell_output(cmd)
|
|
end
|
|
end
|