You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
livecd-rootfs/live-build/ubuntu-touch/hooks/60-install-click.chroot

20 lines
446 B

#!/bin/sh
set -e
echo "Setting up click packages"
echo "Installing curl to download click"
apt-get install -y -qq curl
click_uri=http://people.canonical.com/~sergiusens/click_packages
click_list=$click_uri/click_list
12 years ago
for package in $(curl "$click_list")
do
echo "Setting up $package"
12 years ago
curl --silent --show-error --output "$package" "$click_uri"/"$package"
click install --force-missing-framework "$package"
rm "$package"
done