-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathEask
More file actions
30 lines (22 loc) · 887 Bytes
/
Eask
File metadata and controls
30 lines (22 loc) · 887 Bytes
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
30
;; -*- mode: eask; lexical-binding: t -*-
(package "magik-mode"
"0.5.5"
"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 "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