forked from Homebrew/homebrew-cask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcmucl.rb
21 lines (17 loc) · 795 Bytes
/
cmucl.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
cask 'cmucl' do
version '21c'
sha256 'ee08a8d9117aecf8b073b6100ce815e7b4ae9ed557a59660a074b3a0af5b452e'
# common-lisp.net/project/cmucl was verified as official when first introduced to the cask
url "https://common-lisp.net/project/cmucl/downloads/release/#{version}/cmucl-#{version}-x86-darwin.tar.bz2"
appcast 'https://common-lisp.net/project/cmucl/downloads/release/'
name 'Cmucl'
homepage 'https://www.cons.org/cmucl/'
binary 'bin/lisp'
artifact 'lib/cmucl', target: "#{HOMEBREW_PREFIX}/lib/cmucl"
artifact 'man/man1/cmucl.1', target: "#{HOMEBREW_PREFIX}/share/man/man1/cmucl.1"
artifact 'man/man1/lisp.1', target: "#{HOMEBREW_PREFIX}/share/man/man1/lisp.1"
caveats <<~EOS
Instructions on using cmucl are available in
#{staged_path}/doc/cmucl
EOS
end