(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!)))