class MinimalRacket < Formula desc "Modern programming language in the Lisp/Scheme family" homepage "https://racket-lang.org/" url "https://mirror.racket-lang.org/installers/6.12/racket-minimal-6.12-src-builtpkgs.tgz" sha256 "295a422d60af2a3186a18783d033c167eeed07b936c79f404d25123a0209d683" bottle do sha256 "f863ac881446d44be42d60a5e829210fb7f9b120b9814c21494d49005e57f1c4" => :high_sierra sha256 "af1e60551ecb5b89671af7520089fae9e748c1e4f7d17787e936011868ee87da" => :sierra sha256 "2646b2e1bbb97bc7af8f16d30f17ac4e3df0bbc61a460feac6a4278f66cf8311" => :el_capitan end # these two files are amended when (un)installing packages skip_clean "lib/racket/launchers.rktd", "lib/racket/mans.rktd" def install cd "src" do args = %W[ --disable-debug --disable-dependency-tracking --enable-macprefix --prefix=#{prefix} --man=#{man} --sysconfdir=#{etc} ] args << "--disable-mac64" unless MacOS.prefer_64_bit? system "./configure", *args system "make" system "make", "install" end # configure racket's package tool (raco) to do the Right Thing # see: https://docs.racket-lang.org/raco/config-file.html inreplace etc/"racket/config.rktd" do |s| s.gsub!( /\(bin-dir\s+\.\s+"#{Regexp.quote(bin)}"\)/, "(bin-dir . \"#{HOMEBREW_PREFIX}/bin\")", ) s.gsub!( /\n\)$/, "\n (default-scope . \"installation\")\n)", ) 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/ https://pkgs.racket-lang.org https://planet-compats.racket-lang.org default-scope: installation EOS end end