Removing Gnomebaker, long dead software.

Gnomebaker is long dead. Last release was made in 2008. Replacing it by Brasero which is supported.
This commit is contained in:
FredBezies 2018-09-19 15:17:21 +02:00 committed by GitHub
parent 9f96c08469
commit b4fb9bedc3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,7 +5,7 @@ options=()
options+=("k3b" "" off)
options+=("xfburn" "" off)
#options+=("xorriso-tcltk" "libisoburn tk kjobwidgets" off)
options+=("gnomebaker" "(AUR)" off)
options+=("brasero" "" off)
sel=$(whiptail --backtitle "$apptitle" --title "Burner applications :" --checklist "Choose what you want" --cancel-button "Back" 0 0 0 \
"${options[@]}" \
@ -16,7 +16,6 @@ fi
for itm in $sel; do
case $itm in
'"gnomebaker"') aurpkg="$aurpkg $(echo $itm | sed 's/"//g')";;
'"xorriso-tcltk"') pkg="$pkg libisoburn tk kjobwidgets";;
*) pkg="$pkg $(echo $itm | sed 's/"//g')";;
esac