-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathquicksearch.asd
35 lines (26 loc) · 1.05 KB
/
quicksearch.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
34
35
;;;; Last modified : 2013-08-17 09:22:54 tkych
;; quicksearch/quicksearch.asd
;;====================================================================
;; QUICKSEARCH: searches CL Library, Quickly
;;====================================================================
;; quicksearch/
;; quicksearch.asd
;; quicksearch.lisp
;; README.md
;; LICENSE
;; CHANGELOG
;;====================================================================
;; System for QUICKSEARCH
;;====================================================================
(asdf:defsystem #:quicksearch
:name "Quicksearch"
:description "Quicksearch searches CL library, and outputs results at REPL."
:version "0.1.03"
:licence "MIT License"
:author "Takaya OCHIAI <[email protected]>"
:depends-on (#:iterate #:anaphora #:alexandria #:cl-ppcre #:drakma
#:yason #:flexi-streams #:do-urlencode #:html-entities
#:bordeaux-threads)
:components ((:file "quicksearch"))
)
;;====================================================================