Files
Linux.js---javascript-OS/liblzma/build.sh
T

15 lines
262 B
Bash
Executable File

if [ "$EUID" = 0 ]
then echo "Please don't run this as root"
exit
fi
git clone https://github.com/kobolabs/liblzma src
cd src
git pull
./configure --prefix /usr
make -j$(nproc)
DESTDIR=$(pwd)/../../libfs
sudo make install DESTDIR=$(realpath $DESTDIR)
cd -