-
Notifications
You must be signed in to change notification settings - Fork 3
/
cl-brewer.asd
25 lines (23 loc) · 1.01 KB
/
cl-brewer.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
#-asdf3.1 (error "cl-brewer requires ASDF 3.1 because for lower versions pathname does not work for package-inferred systems.")
(defsystem "cl-brewer"
:description "Homebrew formula builder for Common Lisp applications."
:author "Dmitry Petrov <[email protected]>"
:maintainer "Alexander Artemenko <[email protected]>"
:license "Public Domain"
:homepage "https://40ants.com/cl-brewer/"
:source-control (:git "https://github.com/40ants/cl-brewer")
:bug-tracker "https://github.com/40ants/cl-brewer/issues"
:class :40ants-asdf-system
:defsystem-depends-on ("40ants-asdf-system"
"deploy")
:pathname "src"
:depends-on ("cl-plus-ssl-osx-fix"
"quicklisp"
"cl-brewer/buildapp/formula"
"cl-brewer/deploy/formula"
"cl-brewer/deploy/hooks"
"cl-brewer/main")
:build-operation "deploy-op"
:build-pathname "cl-brewer"
:entry-point "cl-brewer/main::asdf-main"
:in-order-to ((test-op (test-op "cl-brewer-tests"))))