1
0
Fork 0
mirror of https://github.com/Findus23/la-tools.git synced 2024-08-27 19:52:15 +02:00
la-tools/anki.sh

17 lines
433 B
Bash
Raw Normal View History

2014-02-25 14:10:57 +01:00
#!/bin/bash
2014-12-01 17:01:47 +01:00
TEXTDOMAIN=la-tools
TEXTDOMAINDIR=./
name="Anki"
./installed.sh anki $name && exit
2014-12-20 12:18:46 +01:00
cd /tmp
2014-12-01 18:39:06 +01:00
URL="http://ankisrs.net/download/mirror/anki-2.0.31.deb"
wget -c $URL
2014-12-01 17:55:31 +01:00
sudo apt-get install mplayer -y
2014-12-01 18:39:06 +01:00
if sudo dpkg -i ./$(basename $URL)
2014-02-25 14:10:57 +01:00
then
2014-12-01 17:01:47 +01:00
zenity --info --title $"Success" --text $"$name successfully installed"
2014-12-01 18:39:06 +01:00
rm ./$(basename $URL)
2014-02-25 14:10:57 +01:00
else
2014-12-01 17:01:47 +01:00
zenity --error --title $"Error" --text $"An error occurred while installing $name"
2014-02-25 14:10:57 +01:00
fi