76 lines
2.2 KiB
Ruby
76 lines
2.2 KiB
Ruby
class MinimalRacket < Formula
|
|
desc "Modern programming language in the Lisp/Scheme family"
|
|
homepage "https://racket-lang.org/"
|
|
url "https://mirror.racket-lang.org/installers/7.9/racket-minimal-7.9-src-builtpkgs.tgz"
|
|
sha256 "293aa8ef709a6240472f16833351ba66a9e461261d2813c7fb1cc5ddf59c3000"
|
|
license any_of: ["MIT", "Apache-2.0"]
|
|
|
|
livecheck do
|
|
url "https://download.racket-lang.org/all-versions.html"
|
|
regex(/>Version ([\d.]+)/i)
|
|
end
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "330c0724e1315eaec481eaa96842cda06c6b33c613d10fed2c619c4f675c5bd2" => :catalina
|
|
sha256 "809d6cf0d6e8af29fe6175b5442bdd064b875b1a7653b570353b536f83ff3901" => :mojave
|
|
sha256 "13c1be2585bffe2252ce5cdc1357ba0bc9f5675cbd4ffd4d474e1a40c597ef20" => :high_sierra
|
|
end
|
|
|
|
uses_from_macos "libffi"
|
|
|
|
# these two files are amended when (un)installing packages
|
|
skip_clean "lib/racket/launchers.rktd", "lib/racket/mans.rktd"
|
|
|
|
def install
|
|
# configure racket's package tool (raco) to do the Right Thing
|
|
# see: https://docs.racket-lang.org/raco/config-file.html
|
|
inreplace "etc/config.rktd", /\)\)\n$/, ") (default-scope . \"installation\"))\n"
|
|
|
|
cd "src" do
|
|
args = %W[
|
|
--disable-debug
|
|
--disable-dependency-tracking
|
|
--enable-origtree=no
|
|
--enable-macprefix
|
|
--prefix=#{prefix}
|
|
--mandir=#{man}
|
|
--sysconfdir=#{etc}
|
|
--enable-useprefix
|
|
]
|
|
|
|
system "./configure", *args
|
|
system "make"
|
|
system "make", "install"
|
|
end
|
|
end
|
|
|
|
def caveats
|
|
<<~EOS
|
|
This is a minimal Racket distribution.
|
|
If you want to build the DrRacket IDE, you may run:
|
|
raco pkg install --auto drracket
|
|
|
|
The full Racket distribution is available as a cask:
|
|
brew cask install racket
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
output = shell_output("#{bin}/racket -e '(displayln \"Hello Homebrew\")'")
|
|
assert_match /Hello Homebrew/, output
|
|
|
|
# show that the config file isn't malformed
|
|
output = shell_output("'#{bin}/raco' pkg config")
|
|
assert $CHILD_STATUS.success?
|
|
assert_match Regexp.new(<<~EOS), output
|
|
^name:
|
|
#{version}
|
|
catalogs:
|
|
https://download.racket-lang.org/releases/#{version}/catalog/
|
|
default-scope:
|
|
installation
|
|
EOS
|
|
end
|
|
end
|