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
(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))))
|