summaryrefslogtreecommitdiff
path: root/bgpstore.asd
diff options
context:
space:
mode:
Diffstat (limited to 'bgpstore.asd')
-rw-r--r--bgpstore.asd20
1 files changed, 20 insertions, 0 deletions
diff --git a/bgpstore.asd b/bgpstore.asd
new file mode 100644
index 0000000..27324a4
--- /dev/null
+++ b/bgpstore.asd
@@ -0,0 +1,20 @@
+;;;; -*- 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"))))))