Files
Linux.js---javascript-OS/liblzma/build.sh
T
2021-12-03 09:36:49 +01:00

15 lines
263 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)/../../rootfs
sudo make install DESTDIR=$(realpath $DESTDIR)
cd -