Skip to content

Commit

Permalink
Add :author/:license/:description fields to .asd files
Browse files Browse the repository at this point in the history
Closes #24
  • Loading branch information
hanshuebner committed May 28, 2015
1 parent afe67e9 commit 82b48a4
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
8 changes: 7 additions & 1 deletion cl-ppcre-unicode.asd
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,19 @@
(in-package :cl-ppcre-unicode-asd)

(defsystem :cl-ppcre-unicode
:description "Perl-compatible regular expression library (Unicode)"
:author "Dr. Edi Weitz"
:license "BSD"
:components ((:module "cl-ppcre-unicode"
:serial t
:components ((:file "packages")
(:file "resolver"))))
:depends-on (:cl-ppcre :cl-unicode))

(defsystem :cl-ppcre-unicode-test
:description "Perl-compatible regular expression library tests (Unicode)"
:author "Dr. Edi Weitz"
:license "BSD"
:depends-on (:cl-ppcre-unicode :cl-ppcre-test)
:components ((:module "test"
:serial t
Expand All @@ -55,4 +61,4 @@
(operate 'load-op :cl-ppcre)
(operate 'load-op :cl-ppcre-unicode-test)
(funcall (intern (symbol-name :run-all-tests) (find-package :cl-ppcre-test))
:more-tests (intern (symbol-name :unicode-test) (find-package :cl-ppcre-test))))
:more-tests (intern (symbol-name :unicode-test) (find-package :cl-ppcre-test))))
5 changes: 5 additions & 0 deletions cl-ppcre.asd
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@
(defsystem :cl-ppcre
:version "2.0.9"
:description "Perl-compatible regular expression library"
:author "Dr. Edi Weitz"
:license "BSD"
:serial t
:components ((:file "packages")
(:file "specials")
Expand Down Expand Up @@ -68,6 +70,9 @@
(:file "api")))

(defsystem :cl-ppcre-test
:description "Perl-compatible regular expression library tests"
:author "Dr. Edi Weitz"
:license "BSD"
:depends-on (:cl-ppcre :flexi-streams)
:components ((:module "test"
:serial t
Expand Down

0 comments on commit 82b48a4

Please sign in to comment.