mirror of
https://github.com/iiab/iiab.git
synced 2025-02-13 03:32:12 +00:00
22 lines
951 B
Bash
Executable file
22 lines
951 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Thanks to Jerry Vonau (https://github.com/jvonau) who made this critical
|
|
# breakthrough possible!
|
|
#
|
|
# Calibre 3.23 is the latest available from testing as of 2018-05-10:
|
|
# https://packages.debian.org/search?keywords=calibre
|
|
# (SEE ALSO http://deb.debian.org/debian/pool/main/c/calibre/ ?)
|
|
#
|
|
# Might break future updates; you have been warned.
|
|
|
|
export DEBIAN_FRONTEND=noninteractive
|
|
# Drags in stock desktop dependencies without too much from testing below
|
|
apt -y install calibre-bin dirmngr
|
|
# Updates calibre calibre-bin to version 3.20 or ... 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
|
|
apt update
|
|
apt -y install libqt5core5a python-lxml calibre
|
|
# 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
|
|
apt update
|