annotate amuse-database-admin.asd @ 266:d605fd37b0ee
fix mtp description again - return the string not '(string)
author |
Jamie Forth <j.forth@gold.ac.uk> |
date |
Sun, 10 Apr 2011 18:28:27 +0100 |
parents |
6a3adca16910 |
children |
|
rev |
line source |
j@191
|
1 (asdf:defsystem amuse-database-admin
|
j@191
|
2 :name "amuse-database-admin"
|
j@191
|
3 :description "Basic admin functions for an AMuSE database."
|
j@191
|
4 :depends-on ("clsql-mysql" "amuse")
|
j@191
|
5 :components
|
j@191
|
6 ((:module base
|
j@191
|
7 :components
|
j@191
|
8 ((:module database
|
j@191
|
9 :components
|
j@191
|
10 ((:file "package")
|
j@191
|
11 (:file "database-connect" :depends-on ("package"))
|
j@216
|
12 (:file "generics" :depends-on ("package"))
|
j@251
|
13 (:file "implementations-functions"
|
j@251
|
14 :depends-on ("implementations-setup"))
|
j@251
|
15 (:file "implementations-setup"
|
j@251
|
16 :depends-on ("package"))))))))
|