mirror of
https://github.com/roswell/roswell.git
synced 2026-09-10 07:16:17 -04:00
21 lines
585 B
Common Lisp
21 lines
585 B
Common Lisp
#!/bin/sh
|
|
#|-*- mode:lisp -*-|#
|
|
#| get lisp libraries.
|
|
exec ros -Q -- $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.get.3691974593
|
|
(:use :cl))
|
|
(in-package :ros.script.get.3691974593)
|
|
|
|
(defun main (&rest argv)
|
|
(let ((asdf:*system-definition-search-functions*
|
|
(remove 'roswell-installable-searcher asdf:*system-definition-search-functions*)))
|
|
(install argv)))
|
|
;;; vim: set ft=lisp lisp:
|