Let\'s say I build an application on top of net.aserve and bordeaux-threads. My package declaration might look like this:
net.aserve
bordeaux-threads
(defpackage :
In your asd file, you should define the depends realtion as below:''
(asdf:defsystem #:aserve :serial t :depends-on (#:hunchentoot :hunchentoot-cgi #::bordeaux-threads #:parenscript) ...)
After then you just need to (ql:quickload :aserve) .