|
Revision 3962, 0.6 kB
(checked in by hans, 2 months ago)
|
Put bknr.impex and bknr.xml back in. They are used, contrary to what I
believed.
|
| Line | |
|---|
| 1 |
|
|---|
| 2 |
(in-package :cl-user) |
|---|
| 3 |
|
|---|
| 4 |
(defpackage :bknr.data.impex.system |
|---|
| 5 |
(:use :cl :asdf)) |
|---|
| 6 |
|
|---|
| 7 |
(in-package :bknr.data.impex.system) |
|---|
| 8 |
|
|---|
| 9 |
(defsystem :bknr.data.impex |
|---|
| 10 |
:name "baikonour datastore with xml impex" |
|---|
| 11 |
:author "Hans Huebner <hans@huebner.org>" |
|---|
| 12 |
:author "Manuel Odendahl <manuel@bl0rg.net>" |
|---|
| 13 |
:version "0" |
|---|
| 14 |
:maintainer "Manuel Odendahl <manuel@bl0rg.net>" |
|---|
| 15 |
:licence "BSD" |
|---|
| 16 |
:description "baikonour - launchpad for lisp satellites" |
|---|
| 17 |
|
|---|
| 18 |
:depends-on (:cl-interpol :unit-test :bknr.utils :bknr.indices |
|---|
| 19 |
:bknr.datastore :bknr.impex) |
|---|
| 20 |
|
|---|
| 21 |
:components ((:module "data" :components ((:file "xml-object"))))) |
|---|