39 lines
1.1 KiB
Bash
39 lines
1.1 KiB
Bash
#!/bin/bash
|
|
. ./lib
|
|
|
|
options=()
|
|
|
|
options+=("gst-plugins-base" "" on)
|
|
options+=("gst-plugins-good" "" on)
|
|
options+=("gst-plugins-ugly" "" on)
|
|
options+=("gst-plugins-bad" "" off)
|
|
options+=("gst-libav" "" on)
|
|
#options+=("gst-plugin-libde265" "(AUR)" off)
|
|
options+=("gstreamer0.10-base-plugins" "" on)
|
|
options+=("gstreamer0.10-good-plugins-slim" "(AUR)" off)
|
|
options+=("gstreamer0.10-good-plugins" "" on)
|
|
options+=("gstreamer0.10-ugly-plugins" "" on)
|
|
options+=("gstreamer0.10-bad-plugins" "" off)
|
|
options+=("gstreamer0.10-ffmpeg" "" on)
|
|
#options+=("gstreamer0.10-plugin-libde265" "(AUR)" off)
|
|
#options+=("libde265" "(AUR)" off)
|
|
|
|
sel=$(whiptail --backtitle "$apptitle" --title "Gstreamer Install" --checklist "" --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
|
|
'gst-plugin-libde265' | \
|
|
'gstreamer0.10-good-plugins-slim' | \
|
|
'gstreamer0.10-plugin-libde265') aurpkg="$aurpkg $(echo $itm | sed 's/"//g')";;
|
|
*) pkg="$pkg $(echo $itm | sed 's/"//g')";;
|
|
esac
|
|
done
|
|
|
|
instpkg "$pkg" "$aurpkg"
|
|
|
|
exit 0
|