1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-03-09 15:40:17 +00:00

remove echos and add notes

This commit is contained in:
Jerry Vonau 2017-11-19 14:44:52 -06:00
parent 1455c313b8
commit b325eab2d6

View file

@ -1,27 +1,20 @@
#!/bin/bash #!/bin/bash
echo "install stock calibre-bin" export DEBIAN_FRONTEND=noninteractive
apt-get -y install calibre-bin dirmngr # drags in stock desktop dependencies without too much from testing below
apt -y install calibre-bin dirmngr
echo "installing debian key" # updates calibre-bin to version 3.10 from testing
apt-key adv --recv-key --keyserver keyserver.ubuntu.com 7638D0442B90D010 apt-key adv --recv-key --keyserver keyserver.ubuntu.com 7638D0442B90D010
echo "enabling testing"
echo "deb http://deb.debian.org/debian testing main" > /etc/apt/sources.list.d/debian-testing.list echo "deb http://deb.debian.org/debian testing main" > /etc/apt/sources.list.d/debian-testing.list
apt-get update apt update
apt -y install libqt5core5a python-lxml
echo "updating dependencies"
apt-get -y install libqt5core5a python-lxml
rm /etc/apt/sources.list.d/debian-testing.list rm /etc/apt/sources.list.d/debian-testing.list
echo "enabling unstable" # updates to calibre & calibre-bin to 3.12 from unstable
echo "deb http://deb.debian.org/debian unstable main" > /etc/apt/sources.list.d/debian-unstable.list echo "deb http://deb.debian.org/debian unstable main" > /etc/apt/sources.list.d/debian-unstable.list
apt-get update apt update
apt -y install calibre
echo "installing calibre 3.12"
apt-get -y install calibre
rm /etc/apt/sources.list.d/debian-unstable.list rm /etc/apt/sources.list.d/debian-unstable.list
echo "disabled testing and unstable repos" # clears the cache of testing and unstable
apt-get update apt update
echo "DONE"