Skip to content

Commit

Permalink
Some cleanup and minor updates
Browse files Browse the repository at this point in the history
  • Loading branch information
HiTECNOLOGYs committed Aug 10, 2014
1 parent e975f9a commit ebdd131
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 13 deletions.
1 change: 1 addition & 0 deletions COPYING
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
Copyright (c) 2014 Mark Fedurin <[email protected]>
Copyright (c) 2010 Abhishek Reddy <http://abhishek.geek.nz>

cl-charms includes portions of code from cl-ncurses. The copyright
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Portability
cl-charms in it's current state has been officially confirmed by me to fully
work at least with configurations listed below:

* SBCL 1.1.8 on Gentoo Linux (3.13.6-hardened-r3) x86-64
* SBCL 1.1.8--1.2.1 on Gentoo Linux (3.13.6-hardened-r3--3.15.6-hardened) x86-64
* CCL 1.9-r15769M on Gentoo Linux (3.13.6-hardened-r3) x86-64

It may work on other implementations and system but I can not guarantee you
Expand Down
23 changes: 12 additions & 11 deletions cl-charms.asd
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
;;;; This file is part of cl-charms, providing CFFI bindings to libcurses.
;;;;
;;;; Copyright (c) 2014 Mark Fedurin <[email protected]>
;;;; Copyright (c) 2010 Abhishek Reddy <http://abhishek.geek.nz>
;;;;
;;;; This file includes portions of code from cl-ncurses, an ncurses
Expand Down Expand Up @@ -29,14 +30,14 @@
;;;; TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
;;;; SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

(asdf:defsystem :cl-charms
:version (:read-file-form "version.lisp-expr")
:maintainer "Mark Fedurin <[email protected]>"
:author "Abhishek Reddy <[email protected]>"
:description "CFFI bindings for curses."
:depends-on (:cffi :alexandria)
:serial t
:components
((:module "src"
:components ((:file "package")
(:file "charms")))))
(defsystem :cl-charms
:version (:read-file-form "version.lisp-expr")
:maintainer "Mark Fedurin <[email protected]>"
:author "Abhishek Reddy <[email protected]>"
:description "CFFI bindings for curses."
:depends-on (:cffi
:alexandria)
:serial t
:pathname "src/"
:components ((:file "package")
(:file "charms")))
3 changes: 2 additions & 1 deletion src/charms.lisp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
;;;; This file is part of cl-charms, providing CFFI bindings to libcurses.
;;;;
;;;; Copyright (c) 2014 Mark Fedurin <[email protected]>
;;;; Copyright (c) 2010 Abhishek Reddy <http://abhishek.geek.nz>
;;;;
;;;; This file includes portions of code from cl-ncurses, an ncurses
Expand Down Expand Up @@ -41,7 +42,7 @@
(:darwin (:or "libcurses.dylib" "libncurses.dylib"))
(:unix (:or "libncurses.so.5" "libcurses"))
(t (:default "libcurses")))

(use-foreign-library libcurses)


Expand Down
1 change: 1 addition & 0 deletions src/package.lisp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
;;;; This file is part of cl-charms, providing CFFI bindings to libcurses.
;;;;
;;;; Copyright (c) 2014 Mark Fedurin <[email protected]>
;;;; Copyright (c) 2010 Abhishek Reddy <http://abhishek.geek.nz>
;;;;
;;;; This file includes portions of code from cl-ncurses, an ncurses
Expand Down

0 comments on commit ebdd131

Please sign in to comment.