You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
322 B
15 lines
322 B
cask 'emacs-nightly' do
|
|
version :latest
|
|
sha256 :no_check
|
|
|
|
url do
|
|
require 'open-uri'
|
|
base_url = 'https://emacsformacosx.com/atom/daily'
|
|
file = open(base_url).read.scan(%r{href="([^"]+.dmg)"}).flatten.first
|
|
file.to_s
|
|
end
|
|
name 'Emacs'
|
|
homepage 'https://emacsformacosx.com/'
|
|
|
|
app 'Emacs.app'
|
|
end
|
|
|