Last active
September 3, 2022 19:27
-
-
Save Luv2C0d3/e29c8e0934aabd40e7a18b1bedc3ed5d to your computer and use it in GitHub Desktop.
This file contains 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
sudo zypper in libuuid-devel | |
sudo zypper in libX11-devel | |
git clone https://github.com/cisco/ChezScheme.git | |
cd ChezScheme | |
./configure | |
make | |
# | |
# To test without installing | |
# | |
make run | |
# | |
# To create RPM and install it | |
# | |
sudo zypper in rpm-build | |
make rpm | |
sudo rpm -i ./a6le/rpm/ChezScheme-9.5.9-1.x86_64.rpm | |
# | |
# to uninstall rpm | |
# | |
sudo rpm -e ChezScheme | |
# | |
# to list files in rpm | |
# | |
rpm -ql ./a6le/rpm/ChezScheme-9.5.9-1.x86_64.rpm | |
# | |
# or if the package is installed | |
# | |
rpm -ql ChezScheme |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment