forked from borodust/quickdist
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.lisp
38 lines (38 loc) · 1.12 KB
/
package.lisp
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
(defpackage #:quickdist
(:use #:cl #:alexandria)
(:import-from #:quicklisp
#:file-size)
(:import-from #:uiop
#:native-namestring)
(:import-from #:function-cache
#:defcached)
(:export #:quickdist
#:*implementation-systems*
#:*distinfo-template*
#:*distinfo-file-template*
#:*dist-dir-template*
#:*archive-dir-template*
#:*archive-url-template*
#:*gnutar*
#:*project-path*
#:*default-ignore-filename-p*
#:*default-ignore-dependency-p*
#:skip-project
#:make-archive
#:make-systems-info
#:system-info
#:get-path
#:get-project-name
#:get-filename
#:get-name
#:get-dependencies
#:release-info
#:get-project-url
#:get-file-size
#:get-md5sum
#:get-content-sha1
#:get-project-prefix
#:get-system-files
#:get-archive-path
#:implementation-system-p
#:not-toplevel-filename-p))