-
Notifications
You must be signed in to change notification settings - Fork 0
/
clog-collection.asd
33 lines (31 loc) · 1.02 KB
/
clog-collection.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
;;; -*- encoding:utf-8 Mode: LISP; Syntax: COMMON-LISP; Base: 10 -*- ---
;;
;; Filename: clog-collection.asd
;; Description: A set of CLOG Plugins
;; Author: Jingtao Xu <jingtaozf@gmail.com>
;; Created: 2023.05.31 21:27:16(+0800)
;; Last-Updated: 2023.07.31 15:28:31(+0800)
;; Update #: 24
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;;; Commentary:
;;
;;
(eval-when (:compile-toplevel :load-toplevel :execute)
(unless (find-package :clog-collection.system)
(defpackage :clog-collection.system
(:use :cl :asdf))))
(in-package :clog-collection.system)
(asdf:defsystem clog-collection
:author "Xu Jingtao <jingtaozf@gmail.com>"
:version "0.1"
:licence "MIT"
:serial t
:description "A set of CLOG Plugins"
:defsystem-depends-on (:literate-lisp)
:depends-on (#:iterate #:alexandria #:cl-ppcre #:clog #:yason)
:entry-point
"clog-collection:start-test"
:components ((:module :base :pathname "./"
:serial t
:components ((:org "clog-collection")))))