aports/testing/lem/build-ncurses.lisp
Celeste 653d114fcf testing/lem: new aport
https://lem-project.github.io/
Common Lisp editor/IDE with high expansibility
2024-04-29 14:48:13 +00:00

18 lines
495 B
Common Lisp

(ql:quickload :lem-ncurses)
(cffi:close-foreign-library 'async-process::async-process)
(defun setup-foreign-library-directories ()
(setf cffi:*foreign-library-directories* '())
(cffi:load-foreign-library "/usr/share/lem/libasyncprocess.so"))
(load (merge-pathnames "general.lisp" *load-pathname*))
(apply #'sb-ext:save-lisp-and-die
"lem"
:toplevel 'launch
:executable t
#+sb-core-compression
'(:compression -1)
#-sb-core-compression
'())