shuffletron
shuffletron copied to clipboard
self-contained executables
It would be nice to have self-contained executables, built with a CI/CD pipeline.
You said you already did this, do you recall how ? (I could help with the CI, but not the dependencies linking part).
Hi vindarel, I use a simple script in roswell [1]. Alessandro
[1] https://github.com/roswell/roswell
#!/bin/sh
#|-*- mode:lisp -*-|#
#|
exec ros -Q -- $0 "$@"
|#
(progn ;;init for
(ros:ensure-asdf)
#+quicklisp(ql:quickload '(shuffletron) :silent t)
)
(defpackage :ros.script.shuffletron.3749789111
(:use :cl))
(in-package :ros.script.shuffletron.3749789111)
(defun main (&rest argv)
(declare (ignorable argv))
(shuffletron:run))
;;; vim: set ft=lisp lisp: