25 lines
717 B
Plaintext
25 lines
717 B
Plaintext
|
(defsystem mortgage-calculator
|
||
|
:author "Joseph J. Green <logen@sudotask.com>"
|
||
|
:maintainer "Joseph J. Green <logen@sudotask.com>"
|
||
|
:license "ISC"
|
||
|
:homepage "https://"
|
||
|
:version "0.1"
|
||
|
:components ((:module "src"
|
||
|
:serial t
|
||
|
:components
|
||
|
((:file "mortgage-calculator"))))
|
||
|
:description "Mortgage calculators"
|
||
|
:long-description
|
||
|
#.(uiop:read-file-string
|
||
|
(uiop:subpathname *load-pathname* "README.md"))
|
||
|
:in-order-to ((test-op (test-op my-project-test))))
|
||
|
|
||
|
#|(defsystem mortgage-calculator-test
|
||
|
:author "Joseph J. Green <logen@sudotask.com>"
|
||
|
:license "ISC"
|
||
|
:depends-on (:mortgage-calculator)
|
||
|
:components ((:module "t"
|
||
|
:serial t
|
||
|
:components
|
||
|
((:file "mortgage-calculator"))))) |#
|