|
Revision 3988, 1.3 kB
(checked in by hans, 2 months ago)
|
Remove iconv dependency, which is no longer used.
|
- Property svn:eol-style set to
native
- Property svn:keywords set to
author date id revision
|
| Line | |
|---|
| 1 |
;; -*-Lisp-*- |
|---|
| 2 |
|
|---|
| 3 |
(in-package :cl-user) |
|---|
| 4 |
|
|---|
| 5 |
(defpackage :bknr.utils.system |
|---|
| 6 |
(:use :cl :asdf)) |
|---|
| 7 |
|
|---|
| 8 |
(in-package :bknr.utils.system) |
|---|
| 9 |
|
|---|
| 10 |
(defsystem :bknr.utils |
|---|
| 11 |
:name "baikonour" |
|---|
| 12 |
:author "Hans Huebner <hans@huebner.org>" |
|---|
| 13 |
:author "Manuel Odendahl <manuel@bl0rg.net>" |
|---|
| 14 |
:version "0" |
|---|
| 15 |
:maintainer "Manuel Odendahl <manuel@bl0rg.net>" |
|---|
| 16 |
:licence "BSD" |
|---|
| 17 |
:description "baikonour - launchpad for lisp satellites" |
|---|
| 18 |
|
|---|
| 19 |
:depends-on (:cl-interpol :cl-ppcre |
|---|
| 20 |
:md5 |
|---|
| 21 |
:flexi-streams |
|---|
| 22 |
:bordeaux-threads) |
|---|
| 23 |
|
|---|
| 24 |
:components ((:module "statistics" :components ((:file "package") |
|---|
| 25 |
(:file "runtime-statistics" :depends-on ("package")))) |
|---|
| 26 |
|
|---|
| 27 |
(:module "utils" :components ((:file "package") |
|---|
| 28 |
(:file "utils" :depends-on ("package")) |
|---|
| 29 |
(:file "class" :depends-on ("package" "utils")) |
|---|
| 30 |
#+(or cmu allegro openmcl sbcl) |
|---|
| 31 |
(:file "smbpasswd" :depends-on ("utils")) |
|---|
| 32 |
(:file "actor" :depends-on ("utils" "acl-mp-compat")) |
|---|
| 33 |
(:file "reader" :depends-on ("utils")) |
|---|
| 34 |
(:file "crypt-md5" :depends-on ("utils")) |
|---|
| 35 |
(:file "capability" :depends-on ("utils")) |
|---|
| 36 |
(:file "make-fdf-file" :depends-on ("utils")) |
|---|
| 37 |
(:file "date-calc") |
|---|
| 38 |
(:file "parse-time") |
|---|
| 39 |
(:file "acl-mp-compat" :depends-on ("package")))))) |
|---|
| 40 |
|
|---|