homebrew-core/Formula/nim.rb
2019-10-07 00:05:54 +02:00

64 lines
2.1 KiB
Ruby

class Nim < Formula
desc "Statically typed compiled systems programming language"
homepage "https://nim-lang.org/"
url "https://nim-lang.org/download/nim-1.0.0.tar.xz"
sha256 "034817cc4dec86b7099bcf3e79e9e38842b50212b2fd96cd741fe90855a7e0dd"
bottle do
cellar :any_skip_relocation
sha256 "0123352a0944e25a72e7ff5b6dc9f0630d2e0dd338b48cc2846857ca2dbfc934" => :catalina
sha256 "f1103b3ea8487bdb70cdd722d422d685a2653fbdb300992c680970ad60c91468" => :mojave
sha256 "a7252c17df0988a82d3930a875b565c2efa7a2e0780b4272da4785b5c7c892d8" => :high_sierra
sha256 "e97874d77cbe882ad4fc71dc6c324fb3ffcbca3040a4aa1e21d6558d7185f596" => :sierra
end
head do
url "https://github.com/nim-lang/Nim.git", :branch => "devel"
resource "csources" do
url "https://github.com/nim-lang/csources.git"
end
end
def install
if build.head?
resource("csources").stage do
system "/bin/sh", "build.sh"
(buildpath/"bin").install "bin/nim"
end
else
system "/bin/sh", "build.sh"
end
# Compile the koch management tool
system "bin/nim", "c", "-d:release", "koch"
# Build a new version of the compiler with readline bindings
system "./koch", "boot", "-d:release", "-d:useLinenoise"
# Build nimble/nimgrep/nimpretty/nimsuggest
system "./koch", "tools"
system "./koch", "geninstall"
system "/bin/sh", "install.sh", prefix
target = prefix/"nim/bin"
bin.install_symlink target/"nim"
tools = %w[nimble nimgrep nimpretty nimsuggest]
tools.each do |t|
target.install buildpath/"bin"/t
bin.install_symlink target/t
end
end
test do
(testpath/"hello.nim").write <<~EOS
echo("hello")
EOS
assert_equal "hello", shell_output("#{bin}/nim compile --verbosity:0 --run #{testpath}/hello.nim").chomp
(testpath/"hello.nimble").write <<~EOS
version = "0.1.0"
author = "Author Name"
description = "A test nimble package"
license = "MIT"
requires "nim >= 0.15.0"
EOS
assert_equal "name: \"hello\"\n", shell_output("#{bin}/nimble dump").lines.first
end
end