blob: a25cb8c87984bfe9f6ec5a0c11daf894da12c82f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
(defsystem "geoip"
:version "0.1.0"
:author "Oscar"
:license "GPL-3"
:depends-on ("cffi"
"mmap"
"ieee-floats"
"split-sequence")
:components ((:file "ip"))
:description "Query maxminddb for ip information"
:in-order-to ((test-op (test-op "geoip/tests"))))
(defsystem "geoip/tests"
:author "Oscar"
:license "GPL-3"
:depends-on ("geoip"
"fiveam")
:components ((:file "tests"))
:description "Test system for geoip"
:perform (test-op (op c) (symbol-call :fiveam :run!)))
|