Skip to content

Commit

Permalink
Package definition has been moved to separate file. System definition…
Browse files Browse the repository at this point in the history
… for asdf has been added.
  • Loading branch information
poiuj committed Jun 25, 2013
1 parent f1f90ff commit 9ab3de4
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
8 changes: 8 additions & 0 deletions cl-text-table.asd
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
(defsystem cl-text-table
:description "Library for printing text tables"
:version "1.0"
:author "poiuj"
:components ((:static-file "package.lsp")
(:static-file "text-table.lsp"
:depends-on
("package.lsp"))))
4 changes: 4 additions & 0 deletions package.lsp
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
(defpackage text-table
(:use common-lisp)
(:nicknames txt-tbl)
(:export tbl-append print-table parse-file))

0 comments on commit 9ab3de4

Please sign in to comment.