roswell.roswell/lisp/get.ros
2017-02-22 17:24:00 +09:00

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: