Skip to content

add system descriptions #13

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions cl-interpol.asd
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@

(defsystem "cl-interpol"
:version "0.2.7"
:description "CL-INTERPOL is a library for Common Lisp which modifies
the reader so that you can have interpolation within strings similar
to Perl or Unix Shell scripts. It also provides various ways to insert
arbitrary characters into literal strings even if your editor/IDE
doesn't support them."
:license "BSD-2-Clause"
:serial t
:depends-on ("cl-unicode"
Expand All @@ -41,6 +46,7 @@
:in-order-to ((test-op (test-op "cl-interpol/test"))))

(defsystem "cl-interpol/test"
:description "Self test functionality for the CL-INTERPOL library."
:depends-on ("cl-interpol"
"flexi-streams")
:components ((:module "test"
Expand Down