homebrew-cask/Casks/cmucl.rb

23 lines
885 B
Ruby
Raw Normal View History

cask 'cmucl' do
2017-11-14 13:22:43 +08:00
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"
2017-04-22 22:00:02 +08:00
appcast 'https://common-lisp.net/project/cmucl/downloads/release/',
2017-11-14 13:22:43 +08:00
checkpoint: 'cbf92cd84281ac26cff1ae36a7a5e3c9f0d6c4386377b230b606e758624d24c8'
name 'Cmucl'
2017-01-22 09:13:17 +08:00
homepage 'https://www.cons.org/cmucl/'
2017-01-19 15:50:46 +08:00
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