7284fcce1c
add caveat availability of full Racket as cask Closes Homebrew/homebrew#49855. Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
77 lines
2.3 KiB
Ruby
77 lines
2.3 KiB
Ruby
class Racket < Formula
|
|
desc "Modern programming language in the Lisp/Scheme family"
|
|
homepage "https://racket-lang.org/"
|
|
url "https://mirror.racket-lang.org/installers/6.4/racket-minimal-6.4-src-builtpkgs.tgz"
|
|
version "6.4"
|
|
sha256 "cf717d4983f4198fce8973ead5d427bc9da78b73bd51fee16b58c894c2a146e8"
|
|
|
|
bottle do
|
|
sha256 "4c4aed2fbf16f3057bf570b383e407c320fb27a624f5df40ac8aa176c809a0b9" => :el_capitan
|
|
sha256 "2f647fb3d2c13249b85f9a52a97fdce17669bee1102805b8a0a9435397397977" => :yosemite
|
|
sha256 "6b67a01389d715b9a0cf692dab51b45904fe117f9c1243d5c19b9d0e323c1f4f" => :mavericks
|
|
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.undent
|
|
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 $?.success?
|
|
assert_match Regexp.new(<<-EOS.undent), 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
|