-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathEask
29 lines (22 loc) · 873 Bytes
/
Eask
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
(package "magik-mode"
"0.4.1"
"Emacs major mode for Smallworld Magik files")
(website-url "https://github.com/roadrunner1776/magik")
(keywords "languages")
(package-file "magik-mode.el")
(files "*.el" "snippets")
(script "test" "echo \"Error: no test specified\" && exit 1")
(source "gnu")
(source "melpa")
(depends-on "emacs" "24.4")
(depends-on "auto-complete")
(depends-on "compat")
(depends-on "flycheck")
(depends-on "yasnippet")
;; do not try to compile magik-ts-mode.el if we are below 29.1
(when (version< emacs-version "29.1")
(add-hook 'eask-before-compile-hook
(lambda ()
(delete-file "magik-ts-mode.el")
(eask-info "(Removed magik-ts-mode, since it would not compile in Emacs below 29.1)"))))
(setq network-security-level 'low) ; see https://github.com/jcs090218/setup-emacs-windows/issues/156#issuecomment-932956432