-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquicksearch.asd
42 lines (33 loc) · 1.17 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
36
37
38
39
40
41
42
;;;; 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 <tkych.repl@gmail.com>"
:depends-on (#:bordeaux-threads
#:anaphora
#:alexandria
#:cl-ppcre
#:dexador
#:yason
#:flexi-streams
#:do-urlencode
#:html-entities
)
:components ((:file "quicksearch"))
)
;;====================================================================