Created
January 30, 2024 21:03
-
-
Save SequentialDesign/d7a5deb9ea358eb18c3f2a21338dc196 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://github.com/stumpwm/stumpwm | |
| mkdir builds | |
| cd builds | |
| uname -m | |
| http://sbcl.org/platform-table.html | |
| wget http://prdownloads.sourceforge.net/sbcl/sbcl-2.4.1-x86-64-linux-binary.tar.bz2 | |
| http://sbcl.org/getting.html -> read for more info | |
| ls -a | |
| bzip2 -cd sbcl-2.4.1-x86-64-linux-binary.tar.bz2 | tar xvf - | |
| ls -a | |
| cd sbcl* | |
| sudo sh install.sh | |
| sbcl | |
| https://www.quicklisp.org/beta/ | |
| curl -O https://beta.quicklisp.org/quicklisp.lisp | |
| curl -O https://beta.quicklisp.org/quicklisp.lisp.asc | |
| curl -O https://beta.quicklisp.org/release-key.txt | |
| gpg --import release-key.txt | |
| gpg --verify quicklisp.lisp.asc quicklisp.lisp | |
| sbcl --load quicklisp.lisp | |
| (quicklisp-quickstart:install) | |
| (ql:add-to-init-file) | |
| (ql:quickload "clx") | |
| (ql:quickload "cl-ppcre") | |
| (ql:quickload "alexandria") | |
| cd builds | |
| git clone https://github.com/stumpwm/stumpwm.git | |
| ls -a | |
| cd stump* | |
| ./autogen.sh | |
| sudo apt install autoconf | |
| ./autogen.sh | |
| ./configure | |
| sudo apt install texinfo | |
| make | |
| sudo make install | |
| make x files |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment