You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cast/install.sh

22 lines
765 B

#!/usr/bin/env bash
if [[ "${1}" == "-u" ]]; then
echo "Uninstalling cast"
sudo rm /usr/local/bin/cast /usr/share/applications/cast.desktop
echo "If you wish you can now manually remove the dependencies"
exit 0
elif [[ "${1}" == "-h" ]]; then
echo "Usage: $0 [-u|-h]
-h show this message
-u uninstall cast"
exit 0
fi
sudo apt install $(cat dpkg.lst | tr '\n' ' ')
sudo cp src/main.py /usr/bin/cast
sudo chmod +x /usr/bin/cast
2 years ago
sudo cp -a src/{Channel,ChannelProvider,Items,Utils} /usr/lib/python3/dist-packages/
sudo cp -a src/{Channel,ChannelProvider,Items,Utils} /usr/lib/python3.9/
sudo cp -a src/{Channel,ChannelProvider,Items,Utils} /usr/lib/python3.10/
2 years ago
sudo cp data/org.smolnet.cast.desktop /usr/share/applications/
exit 0