mirror of
https://github.com/iiab/iiab.git
synced 2025-02-12 11:12:06 +00:00
Update calibre-install-latest.sh
This commit is contained in:
parent
d009b7a161
commit
178960a088
1 changed files with 10 additions and 8 deletions
|
@ -1,20 +1,22 @@
|
|||
#!/bin/bash
|
||||
export DEBIAN_FRONTEND=noninteractive
|
||||
# drags in stock desktop dependencies without too much from testing below
|
||||
# Drags in stock desktop dependencies without too much from testing below
|
||||
apt -y install calibre-bin dirmngr
|
||||
|
||||
# updates calibre-bin to version 3.10 from testing
|
||||
# Updates calibre-bin to version 3.10 from testing
|
||||
apt-key adv --recv-key --keyserver keyserver.ubuntu.com 7638D0442B90D010
|
||||
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 update
|
||||
apt -y install libqt5core5a python-lxml calibre
|
||||
rm /etc/apt/sources.list.d/debian-testing.list
|
||||
# Remove last line, safer than: rm /etc/apt/sources.list.d/debian-testing.list
|
||||
sed -i '$ d' /etc/apt/sources.list.d/debian-testing.list
|
||||
|
||||
# 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
|
||||
# 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
|
||||
apt update
|
||||
apt -y install calibre
|
||||
rm /etc/apt/sources.list.d/debian-unstable.list
|
||||
# Remove last line, safer than: rm /etc/apt/sources.list.d/debian-unstable.list
|
||||
sed -i '$ d' /etc/apt/sources.list.d/debian-unstable.list
|
||||
|
||||
# clears the cache of testing and unstable
|
||||
# Clears the cache of testing and unstable
|
||||
apt update
|
||||
|
|
Loading…
Reference in a new issue