;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*- (defpackage #:bgpstore-asd (:use :cl :asdf)) (in-package :bgpstore-asd) (defsystem bgpstore :name "bgpstore" :version "0.1" :maintainer "Linus Nordberg" :description "Storing BGP updates in SQL database." ;; FIXME: Split up packge BGP-LOGGER in two to avoid depending on WEBLOCKS. :depends-on (:cxml :usocket :postmodern :weblocks) :components ((:module src :components ((:file "package") (:file "util" :depends-on ("package")) (:file "defs" :depends-on ("util")) (:module bgpstore :components ((:file "bgpstore")) :depends-on ("defs"))))))