-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathEask
More file actions
26 lines (21 loc) · 793 Bytes
/
Eask
File metadata and controls
26 lines (21 loc) · 793 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
;; -*- mode: eask; lexical-binding: t; -*-
;; Repositories
(source "gnu")
(source "melpa")
;; Package metadata
(package "codex-cli" "0.1.3" "Run Codex CLI inside Emacs with helpers.")
(website-url "https://github.com/bennfocus/codex-cli.el")
(keywords "tools" "convenience" "codex")
(license "MIT")
;; Main entry and files included in the build/package
(package-file "codex-cli.el")
(files "codex-cli.el" "codex-cli-*.el")
;; Dependencies
;; Note: vterm is optional at runtime; we intentionally do not depend on it.
(depends-on "emacs" "28.1")
;; Scripts
(script "compile" "eask compile")
(script "byte-compile" "eask compile")
(script "test" "eask test ert tests/*.el")
(script "lint" "eask lint checkdoc && eask lint package-lint")
(script "clean" "eask clean-all")