-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtorrents-reblocks.asd
28 lines (25 loc) · 960 Bytes
/
torrents-reblocks.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
#|
This file is a part of torrents-reblocks project.
|#
(asdf:defsystem torrents-reblocks
:version "0.1.0"
:author "vindarel"
:license "wtf public licence"
:depends-on (:weblocks ;; not in Quicklisp
:weblocks-ui ;; not in Quicklisp
:torrents ;; not in Quicklisp
;; in clack but separate system. See SO "hunchentoot is unknown handler".
:clack-handler-hunchentoot
:find-port
:spinneret
:bordeaux-threads
:log4cl)
:components ((:module "src"
:components
((:file "torrents-reblocks"))))
:description "An interactive web interface to the cl-torrents scraper, without a line of javascript."
;; build executable with asdf:make
:build-operation "program-op"
:build-pathname "torrents-web"
:entry-point "torrents-reblocks:main"
:in-order-to ((test-op (test-op "torrents-reblocks-test"))))