homebrew-core/Formula/crystal.rb

137 lines
5.0 KiB
Ruby

class Crystal < Formula
desc "Fast and statically typed, compiled language with Ruby-like syntax"
homepage "https://crystal-lang.org/"
license "Apache-2.0"
revision 1
stable do
url "https://github.com/crystal-lang/crystal/archive/1.4.1.tar.gz"
sha256 "97466656adede19943619e18af030c1d542c2c3dd1f36f3a422310bd8b53f5e0"
resource "shards" do
url "https://github.com/crystal-lang/shards/archive/v0.17.0.tar.gz"
sha256 "b3f0a2261437b21b3e2465b7755edf0c33f0305a112bd9a36e1b3ec74f96b098"
end
end
livecheck do
url :stable
regex(/^v?(\d+(?:\.\d+)+)$/i)
end
bottle do
sha256 arm64_monterey: "3e6120f5f7a3da7d41aed6d3945d111cbf3e5871c5d4b8744e044ad94f49ec2e"
sha256 arm64_big_sur: "50314c7f799c880d27280831bd83c1af4622b9d5e898a96c363d04e719013de1"
sha256 monterey: "e7b3135c115fe7aa89a8a8785a915e4f1d9f19500512bc393368b190fdecf349"
sha256 big_sur: "6e4df7ecd39a6eb72b4cb78ca7bc1f92a67b7ebe8b71c63571f05ca33506b8fa"
sha256 catalina: "5c66db4aa5106173b05997799ca8460384ca5bfd3482f04651fe70a8781212e1"
sha256 x86_64_linux: "6241a16177243023dec99e9b7e3da77da9a861314ada2a647f138be70d0868c8"
end
head do
url "https://github.com/crystal-lang/crystal.git"
resource "shards" do
url "https://github.com/crystal-lang/shards.git"
end
end
depends_on "bdw-gc"
depends_on "gmp" # std uses it but it's not linked
depends_on "libevent"
depends_on "libyaml"
depends_on "llvm"
depends_on "openssl@1.1" # std uses it but it's not linked
depends_on "pcre"
depends_on "pkg-config" # @[Link] will use pkg-config if available
on_linux do
depends_on "gcc"
end
fails_with gcc: "5"
# Every new crystal release is built from the previous one. The exceptions are
# when crystal make a minor release (only bug fixes). Reason is because those
# bugs could make the compiler from stopping compiling the next compiler.
#
# See: https://github.com/Homebrew/homebrew-core/pull/81318
resource "boot" do
on_macos do
url "https://github.com/crystal-lang/crystal/releases/download/1.3.2/crystal-1.3.2-1-darwin-universal.tar.gz"
version "1.3.2-1"
sha256 "ef7c509e29313ad024a54352abc9b9c30269efc2e81c5796b7b64a5f2c68470d"
end
on_linux do
url "https://github.com/crystal-lang/crystal/releases/download/1.3.2/crystal-1.3.2-1-linux-x86_64.tar.gz"
version "1.3.2-1"
sha256 "6e102e55d658f2cc0c56d23fcb50bd2edbd98959aa6b59b8e1210c6860651ed4"
end
end
def install
llvm = deps.find { |dep| dep.name.match?(/^llvm(@\d+)?$/) }
.to_formula
(buildpath/"boot").install resource("boot")
ENV.append_path "PATH", "boot/bin"
ENV.append_path "CRYSTAL_LIBRARY_PATH", Formula["bdw-gc"].opt_lib
ENV.append_path "CRYSTAL_LIBRARY_PATH", ENV["HOMEBREW_LIBRARY_PATHS"]
ENV.append_path "CRYSTAL_LIBRARY_PATH", Formula["libevent"].opt_lib
ENV.append_path "LLVM_CONFIG", llvm.opt_bin/"llvm-config"
# Build crystal
crystal_build_opts = []
crystal_build_opts << "release=true"
crystal_build_opts << "FLAGS=--no-debug"
crystal_build_opts << "CRYSTAL_CONFIG_LIBRARY_PATH="
crystal_build_opts << "CRYSTAL_CONFIG_BUILD_COMMIT=#{Utils.git_short_head}" if build.head?
(buildpath/".build").mkpath
system "make", "deps"
system "make", "crystal", *crystal_build_opts
# Build shards (with recently built crystal)
#
# Setup the same path the wrapper script would, but just for building shards.
# NOTE: it seems that the installed crystal in bin/"crystal" can be used while
# building the formula. Otherwise this ad-hoc setup could be avoided.
embedded_crystal_path=`"#{buildpath/".build/crystal"}" env CRYSTAL_PATH`.strip
ENV["CRYSTAL_PATH"] = "#{embedded_crystal_path}:#{buildpath/"src"}"
# Install shards
resource("shards").stage do
system "make", "bin/shards", "CRYSTAL=#{buildpath/"bin/crystal"}",
"SHARDS=false",
"release=true",
"FLAGS=--no-debug"
# Install shards
bin.install "bin/shards"
man1.install "man/shards.1"
man5.install "man/shard.yml.5"
end
# Install crystal
libexec.install ".build/crystal"
(bin/"crystal").write <<~SH
#!/bin/bash
EMBEDDED_CRYSTAL_PATH=$("#{libexec/"crystal"}" env CRYSTAL_PATH)
export CRYSTAL_PATH="${CRYSTAL_PATH:-"$EMBEDDED_CRYSTAL_PATH:#{prefix/"src"}"}"
export CRYSTAL_LIBRARY_PATH="${CRYSTAL_LIBRARY_PATH:+$CRYSTAL_LIBRARY_PATH:}#{HOMEBREW_PREFIX}/lib"
export PKG_CONFIG_PATH="${PKG_CONFIG_PATH:+$PKG_CONFIG_PATH:}#{Formula["openssl@1.1"].opt_lib/"pkgconfig"}"
exec "#{libexec/"crystal"}" "${@}"
SH
prefix.install "src"
bash_completion.install "etc/completion.bash" => "crystal"
zsh_completion.install "etc/completion.zsh" => "_crystal"
man1.install "man/crystal.1"
end
test do
assert_match "1", shell_output("#{bin}/crystal eval puts 1")
end
end