-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcube.asd
33 lines (31 loc) · 1002 Bytes
/
cube.asd
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
(in-package :cl-user)
(defpackage cube.asd
(:use :cl :asdf))
(in-package cube.asd)
(defsystem cube
:description "Common LISP Kubernetes Client"
:version "0.0.0"
:author "Xiangyu He"
:mailto "[email protected]"
:depends-on (:alexandria
:optima.ppcre
:drakma
:quri
:ironclad
:cl-json
:cl-base64
:cl-yaclyaml
:cl-hash-util
:cl-change-case)
:serial t
:components ((:file "package")
(:file "variables")
(:file "config")
(:file "helper")
(:file "resources")
(:file "operations")
(:file "exports")))
(loop for d in (directory (merge-pathnames "vendor/*.*" (component-pathname (find-system "cube"))))
do
(when (or (null (pathname-name d)) (eq :unspecific (pathname-name d))) ;; Ensure is directory
(pushnew d asdf:*central-registry* :test 'equal)))