mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-05-15 12:51:34 +00:00
merge lp:~sergiusens/livecd-rootfs/click
This commit is contained in:
commit
585e20360f
6
debian/changelog
vendored
6
debian/changelog
vendored
@ -1,3 +1,9 @@
|
|||||||
|
livecd-rootfs (2.162) UNRELEASED; urgency=low
|
||||||
|
|
||||||
|
* Ubuntu Touch click package install hook.
|
||||||
|
|
||||||
|
-- Sergio Schvezov <sergio.schvezov@canonical.com> Wed, 17 Jul 2013 00:05:49 -0300
|
||||||
|
|
||||||
livecd-rootfs (2.161) saucy; urgency=low
|
livecd-rootfs (2.161) saucy; urgency=low
|
||||||
|
|
||||||
* drop bashrc mangling from ubuntu-touch builds \o/
|
* drop bashrc mangling from ubuntu-touch builds \o/
|
||||||
|
16
live-build/ubuntu-touch/hooks/60-install-click.chroot
Executable file
16
live-build/ubuntu-touch/hooks/60-install-click.chroot
Executable file
@ -0,0 +1,16 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
echo "Setting up click packages"
|
||||||
|
|
||||||
|
click_uri=http://people.canonical.com/~sergiusens/click_packages
|
||||||
|
click_list=$click_uri/click_list
|
||||||
|
|
||||||
|
for package in $(wget -qO- "$click_list")
|
||||||
|
do
|
||||||
|
echo "Setting up $package"
|
||||||
|
wget --no-verbose -O "$package" "$click_uri"/"$package"
|
||||||
|
click install --user=phablet --force-missing-framework "$package"
|
||||||
|
rm "$package"
|
||||||
|
done
|
Loading…
x
Reference in New Issue
Block a user