98 lines
3.3 KiB
Ruby
98 lines
3.3 KiB
Ruby
class Fstar < Formula
|
|
desc "Language with a type system for program verification"
|
|
homepage "https://www.fstar-lang.org/"
|
|
url "https://github.com/FStarLang/FStar.git",
|
|
:tag => "v0.9.1.1",
|
|
:revision => "c41ea17778ff2fef4e75d56604ce1804e1985f33"
|
|
head "https://github.com/FStarLang/FStar.git"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "4ea2e7095a45f83ea0a540ca21ddee443ebe228d9e347bb928ad23f9fec0c969" => :el_capitan
|
|
sha256 "5e022feb56c07ec0a1cd052a18d1b7d2ed87b42826fa741606fe286d07e939c3" => :yosemite
|
|
sha256 "2200a3110f65c07e2bce81147c783b3e973b46efb7f757c63e2d7af24450074b" => :mavericks
|
|
end
|
|
|
|
depends_on "mono" => :build
|
|
depends_on "opam" => :build
|
|
depends_on "ocaml" => :recommended
|
|
depends_on "z3" => :recommended
|
|
|
|
resource "ocamlfind" do
|
|
url "http://download.camlcity.org/download/findlib-1.5.5.tar.gz"
|
|
sha256 "aafaba4f7453c38347ff5269c6fd4f4c243ae2bceeeb5e10b9dab89329905946"
|
|
end
|
|
|
|
resource "batteries" do
|
|
url "https://github.com/ocaml-batteries-team/batteries-included/archive/v2.3.1.tar.gz"
|
|
sha256 "df778b90fcdb26288d9d92a86e51dd75d6bb7c6e41888c748c7508e8ea58b1d4"
|
|
end
|
|
|
|
def install
|
|
ENV.deparallelize # Not related to F* : OCaml parallelization
|
|
|
|
opamroot = buildpath/"opamroot"
|
|
ENV["OPAMROOT"] = opamroot
|
|
ENV["OPAMYES"] = "1"
|
|
system "opam", "init", "--no-setup"
|
|
archives = opamroot/"repo/default/archives"
|
|
modules = []
|
|
resources.each do |r|
|
|
r.verify_download_integrity(r.fetch)
|
|
original_name = File.basename(r.url)
|
|
cp r.cached_download, archives/original_name
|
|
modules << "#{r.name}=#{r.version}"
|
|
end
|
|
system "opam", "install", *modules
|
|
|
|
system "make", "-C", "src/"
|
|
system "opam", "config", "exec", "--",
|
|
"make", "-C", "src/ocaml-output/"
|
|
|
|
bin.install "src/ocaml-output/fstar.exe"
|
|
|
|
(libexec/"stdlib").install Dir["lib/*"]
|
|
(libexec/"contrib").install Dir["contrib/*"]
|
|
(libexec/"examples").install Dir["examples/*"]
|
|
(libexec/"tutorial").install Dir["doc/tutorial/*"]
|
|
(libexec/"src").install Dir["src/*"]
|
|
(libexec/"licenses").install "LICENSE-fsharp.txt", Dir["3rdparty/licenses/*"]
|
|
|
|
prefix.install_symlink libexec/"stdlib"
|
|
prefix.install_symlink libexec/"contrib"
|
|
prefix.install_symlink libexec/"examples"
|
|
prefix.install_symlink libexec/"tutorial"
|
|
prefix.install_symlink libexec/"src"
|
|
prefix.install_symlink libexec/"licenses"
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
F* standard library is available in #{prefix}/stdlib:
|
|
- alias fstar='fstar.exe --include #{prefix}/stdlib --prims prims.fst'
|
|
|
|
F* code can be extracted to OCaml code.
|
|
To compile the generated OCaml code, you must install the
|
|
package 'batteries' from the Opam package manager:
|
|
- brew install opam
|
|
- opam install batteries
|
|
|
|
F* code can be extracted to F# code.
|
|
To compile the generated F# (.NET) code, you must install
|
|
Mono and the FSharp compilers:
|
|
- brew install mono
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/fstar.exe",
|
|
"--include", "#{prefix}/stdlib",
|
|
"--include", "#{prefix}/examples/unit-tests",
|
|
"--prims", "prims.fst",
|
|
"--admit_fsi", "FStar.Set",
|
|
"set.fsi", "heap.fst",
|
|
"st.fst", "all.fst",
|
|
"list.fst", "string.fst",
|
|
"int32.fst", "unit1.fst",
|
|
"unit2.fst", "testset.fst"
|
|
end
|
|
end
|