hsx/hsx.asd

13 lines
443 B
Text
Raw Normal View History

2024-05-25 21:48:35 +09:00
(defsystem "hsx"
2024-12-13 01:37:10 +09:00
:version "0.4.0"
2024-12-20 23:38:19 +09:00
:description "Simple and powerful HTML generation library."
2025-02-23 14:15:05 +09:00
:author "Akira Tempaku, Bo Yao"
:maintainer "Akira Tempaku <paku@skyizwhite.dev>"
2018-07-01 15:13:53 -04:00
:license "MIT"
2024-02-09 01:37:34 +09:00
:long-description #.(uiop:read-file-string
(uiop:subpathname *load-pathname* "README.md"))
2024-05-25 21:48:35 +09:00
:in-order-to ((test-op (test-op hsx-test)))
2024-02-09 01:37:34 +09:00
:class :package-inferred-system
:pathname "src"
2024-05-25 21:48:35 +09:00
:depends-on ("hsx/main"))