2011/5/10 José María García Pérez <josemaria.alkala@...>:
(Moving to sbcl-help.)
> I am trying to produce a package for StumpWM for TinyCoreLinux. So please,
> bear in mind I am not a Lisp user. To compile it, I first need to have
> "sbcl" working in the distribution. I have tried the existing "sbcl" package
> which doesn't seem to work. I have created a new one based on the binary
> file:
> http://prdownloads.sourceforge.net/sbcl/sbcl-1.0.48-x86-linux-binary.tar.bz2
>
> Then I tried to download the "clx" package by executing:
> $ sbcl
> * (require 'asdf)
> * (asdf:oos 'asdf:load-op :asdf-install)
> * (asdf-install:install 'clx)
>
> But there seem to be lot of problems when I execute: (asdf:oos 'asdf:load-op
> :asdf-install).
>
> Could somebody help me to find what I am doing wrong?
Without any more details as to what goes wrong it's hard to say.
However, ASDF-INSTALL as an installation mechanism leaves a lot to be
desired. (It's defects are too numerous to fit into this metaphorical
margin, and besides the point.)
You might have better luck using Quicklisp -- which is pretty much the
successor of CLX.
wget http://beta.quicklisp.org/quicklisp.lisp
sbcl --load quicklisp.lisp
# follow prompts, then new a new SBCL session
(ql:quickload "clx")
Cheers,
-- Nikodemus
|