|
3 년 전 | |
---|---|---|
.. | ||
patches | 4 년 전 | |
src | 4 년 전 | |
.gitignore | 4 년 전 | |
README.md | 3 년 전 | |
patch.sh | 3 년 전 |
st is a simple, lightweight and minimalist terminal for X (linux/*nix). This is not my code. I have taken the source from here and applied some patches.
st-0.8.4 can be retrieved from here.
The source is already retrieved and placed on src
.
The patches are in patches
directory.
With config.patch
.
The patch for 0.8.2 doesn't work on latest source. So had to create it from scratch manually. When applied you can press Ctrl+Shift+Enter to open a new terminal window.
Open a terminal on this directory and run:
./patch.sh
Build prerequisites might be something like:
# Void Linux:
sudo xbps-install make gcc libXft-devel
In OpenBSD there might be an ld: error: unable to find library -lrt
error because rt
is already there in libc. So you might need to run the command below:
sed -i'.bak' -r 's/-lrt //' build/config.mk
Then:
cd build
make clean
make
sudo make install