obosdi-pkg/install/apps/multimedia/audioplayer
FredBezies 1b01092b52
Only add Quodlibet
Sorry for Amarok removal, but it is no longer available on repositories.  So keeping Amarok but tagging it as AUR package. Is this better?

See https://aur.archlinux.org/packages/amarok/
2018-09-20 21:42:37 +02:00

30 lines
763 B
Bash

#!/bin/bash
. ./lib
options=()
options+=("clementine" "Audio Player" off)
options+=("mixxx" "Audio Player" off)
options+=("quodlibet" "Audio Player" off)
options+=("amarok" "(AUR) Audio Player" off)
options+=("guayadeque" "(AUR) Audio Player" off)
options+=("gmusicbrowser" "(AUR) Audio Player" off)
sel=$(whiptail --backtitle "$apptitle" --title "Audio Player applications :" --checklist "Choose what you want" --cancel-button "Back" 0 0 0 \
"${options[@]}" \
3>&1 1>&2 2>&3)
if [ ! "$?" = "0" ]; then
exit 1
fi
for itm in $sel; do
case $itm in
'"Amarok"' | \
'"guayadeque"' | \
'"gmusicbrowser"') aurpkg="$aurpkg $(echo $itm | sed 's/"//g')";;
*) pkg="$pkg $(echo $itm | sed 's/"//g')";;
esac
done
instpkg "$pkg" "$aurpkg"
exit 0