1
0
Fork 0
mirror of https://github.com/Findus23/la-tools.git synced 2024-08-27 19:52:15 +02:00
la-tools/lame.sh
2014-12-01 17:01:47 +01:00

18 lines
415 B
Bash
Executable file

#!/bin/bash
TEXTDOMAIN=la-tools
TEXTDOMAINDIR=./
name="Lame"
if dpkg -l lame|grep -q ii
then
echo $"$name is already installed"
zenity --info --title $"Information" --text $"$name is already installed"
exit
fi
if sudo apt-get install lame
then
zenity --info --title $"Success" --text $"$name successfully installed"
else
zenity --error --title $"Error" --text $"An error occurred while installing $name"
fis