-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathldapper.asd
34 lines (34 loc) · 1.11 KB
/
ldapper.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
(asdf:defsystem ldapper
:version "1.0.3"
:license "zlib"
:author "Yukari Hafner <[email protected]>"
:maintainer "Yukari Hafner <[email protected]>"
:description "A simple LDAP server for user accounts."
:homepage "https://shinmera.github.io/ldapper"
:bug-tracker "https://github.com/shinmera/ldapper/issues"
:source-control (:git "https://github.com/shinmera/ldapper.git")
:build-operation "program-op"
:build-pathname "ldapper"
:entry-point "org.shirakumo.ldapper::main"
:serial T
:components ((:file "package")
(:file "conditions")
(:file "database")
(:file "ldif")
(:file "ldap")
(:file "commands")
(:file "results")
(:file "server")
(:file "protocol")
(:file "config")
(:file "main"))
:depends-on (:usocket
:postmodern
:cl+ssl
:verbose
:crypto-shortcuts
:lparallel
:cl-ppcre
:babel
:alexandria
:trivial-signal))