forked from hraban/trivial-http
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrivial-http.asd
40 lines (35 loc) · 1.06 KB
/
trivial-http.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
;;;; Silly emacs, this is -*- Lisp -*- (or thereabouts)
(in-package #:common-lisp-user)
(defpackage #:trivial-http-system
(:use #:common-lisp #:asdf))
(in-package #:trivial-http-system)
;;this is necessary due to a bug in SBCL
#+sbcl
(require :sb-bsd-sockets)
(defsystem trivial-http
:name "trivial-http"
:author "Brian Mastenbrook and Gary King"
:licence "MIT"
:description "Simple support for HTTP GET, POST and more."
:version "1.3.0"
:depends-on (:usocket)
:components ((:module
"dev"
:components ((:file "package")
(:file "variables"
:depends-on ("package"))
(:file "trivial-http"
:depends-on ("variables"))
(:file "base64"
:depends-on ("variables"))
(:static-file "notes.text"))))
:in-order-to ((test-op (load-op trivial-http-test)))
:perform (test-op :after (op c)
(funcall
(intern (symbol-name '#:run-tests) :lift)
:config :generic))
:depends-on ())
(defmethod operation-done-p
((o test-op)
(c (eql (find-system 'trivial-http))))
(values nil))