mirror of
https://github.com/ocogeclub/ocoge.git
synced 2024-11-22 07:39:49 +00:00
26 lines
628 B
Bash
26 lines
628 B
Bash
#!/bin/bash -x
|
|
# Usage: bash install.sh
|
|
|
|
# install node.js (=electron node version) via n (https://github.com/tj/n)
|
|
curl -L https://raw.githubusercontent.com/tj/n/master/bin/n -o n
|
|
sudo bash n 14.17.0
|
|
# install python code formatter
|
|
python3 -m pip install black
|
|
# install desktop entry
|
|
cp -r ./files/share ~/.local/
|
|
# install binary files if exists
|
|
FILE="./files/binary.zip"
|
|
if [ -e $FILE ]; then
|
|
unzip $FILE -d ..
|
|
else
|
|
echo 'binary.zip not found. plz install manually.'
|
|
fi
|
|
|
|
# build ocoge
|
|
# uncomment if electron will be installed on RPi OS
|
|
# echo 'arch=armv7l' > ~/.npmrc
|
|
cd ..
|
|
npm install
|
|
|
|
read -p "Press enter to exit: "
|