mirror of
https://github.com/roswell/roswell.git
synced 2026-09-10 07:16:17 -04:00
21 lines
541 B
Common Lisp
21 lines
541 B
Common Lisp
#!/bin/sh
|
|
#|-*- mode:lisp -*-|#
|
|
#|Install a given implementation or a system for roswell environment
|
|
exec ros -Q +R -L sbcl-bin -- $0 "$@"
|
|
|#
|
|
|
|
(progn
|
|
(roswell:ensure-asdf)
|
|
(roswell:include "util-install")
|
|
(when (probe-file (merge-pathnames "setup.lisp" (roswell:opt "quicklisp")))
|
|
(roswell:include "util-install-quicklisp")))
|
|
|
|
(defpackage :ros.script.install.3671936092
|
|
(:use :cl :roswell.install :roswell.util))
|
|
(in-package :ros.script.install.3671936092)
|
|
|
|
(defun main (&rest argv)
|
|
(install argv))
|
|
|
|
;;; vim: set ft=lisp lisp:
|