aboutsummaryrefslogtreecommitdiffstats
path: root/geoip/geoip.asd
blob: 53826dda38b0dd2cc9420bf3e19ed231b57b7654 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(defsystem "geoip"
  :version "0.1.0"
  :author "Oscar"
  :license "GPL-3"
  :depends-on ("cffi"
               "mmap"
               "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!)))