Created
March 23, 2022 00:10
-
-
Save largerock/3eda8697d8ac076fa3894e39b2f8161c to your computer and use it in GitHub Desktop.
install script for efsw: https://github.com/SpartanJ/efsw
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
#!/bin/bash | |
if (( $EUID != 0 )); then | |
echo "Please run as root" | |
exit | |
fi | |
cd /tmp | |
git clone https://github.com/SpartanJ/efsw.git | |
cd efsw && mkdir build && cd build | |
cmake .. | |
make -j 2 | |
make install | |
rm -rf /tmp/efsw | |
echo "efsw installed" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Note: this script will require cmake to be installed