roswell.roswell/lisp/install-sbcl-bin.lisp
2017-08-07 04:53:22 +09:00

21 lines
585 B
Common Lisp

(roswell:include "util-install")
(defpackage :roswell.install.sbcl-bin
(:use :cl :roswell.install :roswell.util :roswell.locations))
(in-package :roswell.install.sbcl-bin)
;; sbcl-bin is specially treated. Installation are mainly done by src/cmd-install-sbcl-bin.c.
(defun sbcl-bin-help (argv)
(format t "no options for sbcl-bin~%")
(cons t argv))
(defun sbcl-bin-argv-parse (argv)
(format *error-output* "~&Install Script for sbcl-bin...~%")
(cons t argv))
(defun sbcl-bin (type)
(case type
(:help '(sbcl-bin-help))
(:install '(sbcl-bin-argv-parse
setup))))