You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
827 B
Bash
34 lines
827 B
Bash
#!/bin/bash
|
|
|
|
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
|
|
|
|
function error {
|
|
echo -e "\\e[91m$1\\e[39m"
|
|
exit 1
|
|
}
|
|
|
|
# Get dependencies
|
|
"${DIRECTORY}/pkg-install" "libsfml-dev libsdl2-dev libxdo-dev" "$(dirname "$0")" || exit 1
|
|
|
|
#Download
|
|
rm -rf ~/bongocat-armv7l-* ~/bongocam
|
|
wget -O ~/bongocat.zip https://github.com/mobilegmYT/bongocat-osu/releases/download/1.5.3/bongocat-armv7l-1.5.3.zip
|
|
|
|
#Install
|
|
unzip ~/bongocat.zip
|
|
rm ~/bongocat.zip
|
|
mv ~/bongocat-armv7l-* ~/bongocam
|
|
chmod +x ~/bongocam/bongo
|
|
|
|
#Desktop shortcut
|
|
echo "[Desktop Entry]
|
|
Name=Bongo Cam
|
|
Comment=Cute bongo cat app
|
|
Icon=$(dirname "$0")/icon-64.png
|
|
Exec=$HOME/bongocam/bongo
|
|
Path=$HOME/bongocam/
|
|
Type=Application
|
|
Encoding=UTF-8
|
|
Terminal=false
|
|
Categories=AudioVideo;" > ~/.local/share/applications/bongocam.desktop
|