-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e975f9a
commit ebdd131
Showing
5 changed files
with
17 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
@@ -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"))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
@@ -41,7 +42,7 @@ | |
(:darwin (:or "libcurses.dylib" "libncurses.dylib")) | ||
(:unix (:or "libncurses.so.5" "libcurses")) | ||
(t (:default "libcurses"))) | ||
|
||
(use-foreign-library libcurses) | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|