obosdi-pkg/install/desktop/enlightenment/packages
2015-08-20 22:37:06 +02:00

24 lines
426 B
Bash

#!/bin/bash
. ./lib
options=()
package=""
options+=("enlightenment" "" on)
options+=("connman" "" on)
options+=("acpid" "" on)
sel=$(whiptail --backtitle "$apptitle" --title "Enlightenment 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
pkg="$pkg $(echo $itm | sed 's/"//g')"
done
instpkg "$pkg" "$aurpkg"
exit 0