-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.scm
43 lines (34 loc) · 1.13 KB
/
package.scm
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
31
32
33
34
35
36
37
38
39
40
41
42
43
;;
;; Package Gauche-lisp15
;;
(define-gauche-package "Gauche-lisp15"
;;
:version "1.0"
;; Description of the package. The first line is used as a short
;; summary.
:description "LISP1.5 implementation on Gauche"
;; List of dependencies.
;; Example:
;; :require (("Gauche" (>= "0.9.5")) ; requires Gauche 0.9.5 or later
;; ("Gauche-gl" "0.6")) ; and Gauche-gl 0.6
:require (("Gauche" (>= "0.9.10")))
;; List of providing modules
;; NB: This will be recognized >= Gauche 0.9.7.
;; Example:
;; :providing-modules (util.algorithm1 util.algorithm1.option)
:providing-modules (LISP1.5)
;; List name and contact info of authors.
;; e.g. ("Eva Lu Ator <[email protected]>"
;; "Alyssa P. Hacker <[email protected]>")
:authors ("Shiro Kawai <[email protected]>")
;; List name and contact info of package maintainers, if they differ
;; from authors.
;; e.g. ("Cy D. Fect <[email protected]>")
:maintainers ()
;; List licenses
;; e.g. ("BSD")
:licenses ("MIT")
;; Homepage URL, if any.
;; Repository URL, e.g. github
:repository "https://github.com/shirok/Gauche-lisp15.git"
)