-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathultralisp-client.asd
20 lines (20 loc) · 1005 Bytes
/
ultralisp-client.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#-asdf3.1 (error "ultralisp-client requires ASDF 3.1 because for lower versions pathname does not work for package-inferred systems.")
(defsystem "ultralisp-client"
:description "A client for working with Ultralisp.org"
:author "Alexander Artemenko <[email protected]>"
:license "Unlicense"
:homepage "https://ultralisp.github.io/ultralisp-client/"
:source-control (:git "https://github.com/ultralisp/ultralisp-client")
:bug-tracker "https://github.com/ultralisp/ultralisp-client/issues"
:class :40ants-asdf-system
:defsystem-depends-on ("40ants-asdf-system")
:pathname "src"
:serial t
:depends-on ("jsonrpc"
;; Stupid Quicklisp client does not understand
;; we need to download jsonrpc before jsonrpc/transport/http system :(((
"jsonrpc/transport/http"
"openrpc-client"
"ultralisp-client/tags"
"ultralisp-client/projects")
:in-order-to ((test-op (test-op "ultralisp-client-tests"))))