Install libreoffice with all recommended packages
Move python-games to Raspbian Full and install as a Debian package.
This commit is contained in:
parent
6ffcafe1b8
commit
181218ea9d
6 changed files with 5 additions and 22 deletions
|
@ -1,6 +1,8 @@
|
||||||
UNRELEASED:
|
UNRELEASED:
|
||||||
* Set default timezone to 'Europe/London'
|
* Set default timezone to 'Europe/London'
|
||||||
* Add all extra packages back - Mathematica, BlueJ, Greenfoot, NodeRED, Claws Mail and VNC Viewer
|
* Add all extra packages back - Mathematica, BlueJ, Greenfoot, NodeRED, Claws Mail and VNC Viewer
|
||||||
|
* Remove python-games from the cutdown Raspbian image.
|
||||||
|
* Instal Libreoffice with with all recommended packages
|
||||||
2018-10-09:
|
2018-10-09:
|
||||||
* In startup wizard, assign keyboard to country as per Debian installer recommendations
|
* In startup wizard, assign keyboard to country as per Debian installer recommendations
|
||||||
* In startup wizard, add option to use US keyboard in preference to country-specific option
|
* In startup wizard, add option to use US keyboard in preference to country-specific option
|
||||||
|
|
|
@ -1,23 +1,5 @@
|
||||||
#!/bin/bash -e
|
#!/bin/bash -e
|
||||||
|
|
||||||
HASH="$(wget https://api.github.com/repos/KenT2/python-games/git/refs/heads/master -qO -| grep \"sha\" | cut -f 2 -d ':' | cut -f 2 -d \")"
|
|
||||||
|
|
||||||
if [ -f files/python_games.hash ]; then
|
|
||||||
HASH_LOCAL="$(cat files/python_games.hash)"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ ! -e files/python_games.tar.gz ] || [ "$HASH" != "$HASH_LOCAL" ]; then
|
|
||||||
wget "https://github.com/KenT2/python-games/tarball/master" -O files/python_games.tar.gz
|
|
||||||
echo "$HASH" > files/python_games.hash
|
|
||||||
fi
|
|
||||||
|
|
||||||
ln -sf pip3 "${ROOTFS_DIR}/usr/bin/pip-3.2"
|
|
||||||
|
|
||||||
install -v -o 1000 -g 1000 -d "${ROOTFS_DIR}/home/pi/python_games"
|
|
||||||
tar xvf files/python_games.tar.gz -C "${ROOTFS_DIR}/home/pi/python_games" --strip-components=1
|
|
||||||
chown 1000:1000 "${ROOTFS_DIR}/home/pi/python_games" -Rv
|
|
||||||
chmod +x "${ROOTFS_DIR}/home/pi/python_games/launcher.sh"
|
|
||||||
|
|
||||||
#Alacarte fixes
|
#Alacarte fixes
|
||||||
install -v -o 1000 -g 1000 -d "${ROOTFS_DIR}/home/pi/.local"
|
install -v -o 1000 -g 1000 -d "${ROOTFS_DIR}/home/pi/.local"
|
||||||
install -v -o 1000 -g 1000 -d "${ROOTFS_DIR}/home/pi/.local/share"
|
install -v -o 1000 -g 1000 -d "${ROOTFS_DIR}/home/pi/.local/share"
|
||||||
|
|
2
stage4/02-extras/files/.gitignore
vendored
2
stage4/02-extras/files/.gitignore
vendored
|
@ -1,2 +0,0 @@
|
||||||
python_games.hash
|
|
||||||
python_games.tar.gz
|
|
|
@ -11,3 +11,5 @@ claws-mail
|
||||||
greenfoot bluej
|
greenfoot bluej
|
||||||
nodered
|
nodered
|
||||||
realvnc-vnc-viewer
|
realvnc-vnc-viewer
|
||||||
|
|
||||||
|
python-games
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
libreoffice-sdbc-hsqldb
|
libreoffice-pi
|
||||||
libreoffice-help-en-gb
|
libreoffice-help-en-gb
|
||||||
libreoffice-l10n-en-gb
|
libreoffice-l10n-en-gb
|
|
@ -1 +0,0 @@
|
||||||
libreoffice-pi
|
|
Loading…
Reference in a new issue