Files
koreader/platform/linux/do_debian_package.sh
Martín Fernández 23bcb530c9
Some checks failed
macos / macOS 13 x86-64 🔨15.2 🎯10.15 (push) Has been cancelled
macos / macOS 14 ARM64 🔨15.4 🎯11.0 (push) Has been cancelled
Debian: misc changes (#13596)
- Updated changelog with proper version & date.
- Updated description (based on common metadata)
- Removed duplicated files that are condensed in /usr/share/doc/koreader

Misc:

- make `frontend/device/devicelistener.lua` non executable
- make `plugins/terminal.koplugin/profile` executable
2025-04-15 08:34:11 +02:00

126 lines
3.8 KiB
Bash
Executable File

#!/bin/bash
set -eo pipefail
# Script to generate debian packages for KOReader
command_exists() {
type "$1" >/dev/null 2>/dev/null
}
uname_to_debian() {
case "$1" in
x86_64) echo "amd64" ;;
armv7l) echo "armhf" ;;
aarch64) echo "arm64" ;;
*) echo "$1" ;;
esac
}
write_changelog() {
CHANGELOG_PATH="${1}/share/doc/koreader/changelog.Debian.gz"
CHANGELOG=$(
cat <<END_HEREDOC
koreader ($2) stable; urgency=low
* Changelog is available at https://github.com/koreader/koreader/releases
-- koreader <null@koreader.rocks> $(date -R)
koreader (2025.04) unstable; urgency=low
* don't use debian fonts: https://github.com/koreader/koreader/issues/13509
-- koreader <null@koreader.rocks> Thu, 10 Apr 2025 00:00:00 +0200
koreader (0.0.1) experimental; urgency=low
* initial release as debian package: https://github.com/koreader/koreader/issues/3108
-- koreader <null@koreader.rocks> Tue, 03 Jan 2019 00:00:00 +0100
END_HEREDOC
)
echo "${CHANGELOG}" | gzip -cn9 >"${CHANGELOG_PATH}"
chmod 644 "${CHANGELOG_PATH}"
}
if ! [ -r "${1}" ]; then
echo "${0}: can't find KOReader archive, please specify a path to a KOReader tar.gz" 1>&2
exit 1
fi
# Check for required tools.
missing_tools=()
for tool in dpkg-deb fakeroot; do
if ! command_exists "${tool}"; then
missing_tools+=("${tool}")
fi
done
if [[ ${#missing_tools[@]} -ne 0 ]]; then
echo "${0}: unable to build Debian package, the following tools are missing: ${missing_tools[*]}" 1>&2
exit 1
fi
mkdir -p tmp-debian/usr
chmod 0755 tmp-debian/usr
tar -xf "${1}" -C tmp-debian/usr
rm -f tmp-debian/usr/README.md
ARCH="$(echo "${1}" | cut -d '-' -f3)"
VERSION="$(cut -f2 -dv "tmp-debian/usr/lib/koreader/git-rev" | cut -f1,2 -d-)"
DEB_ARCH="$(uname_to_debian "${ARCH}")"
BASE_DIR="tmp-debian"
# populate debian control file
mkdir -p "${BASE_DIR}/DEBIAN"
cat >"${BASE_DIR}/DEBIAN/control" <<EOF
Section: graphics
Priority: optional
Depends: libsdl2-2.0-0, libc6 (>= 2.31)
Architecture: ${DEB_ARCH}
Version: ${VERSION}
Installed-Size: $(du -ks "${BASE_DIR}/usr/" | cut -f 1)
Package: koreader
Maintainer: koreader <null@koreader.rocks>
Homepage: https://koreader.rocks
Description: Ebook reader optimized for e-ink screens.
It can open many formats and provides advanced text adjustments.
.
See below for a selection of its many features:
.
Supports both fixed page formats (PDF, DjVu, CBT, CBZ)
and reflowable e-book formats (EPUB, FB2, Mobi, DOC, CHM, TXT, HTML).
Scanned PDF/DjVu documents can be reflowed.
Special flow directions for reading double column PDFs and manga.
.
Multi-lingual user interface optimized for e-ink screens.
Highly customizable reader view with complete typesetting options.
Multi-lingual hyphenation dictionaries are bundled in.
.
Non-Latin script support for books, including the Hebrew, Arabic,
Persian, Russian, Chinese, Japanese and Korean languages.
.
Unique Book Map and Page Browser features to navigate your book.
.
Special multi-page highlight mode with many local and online export options.
.
Can synchronize your reading progress across all your KOReader running devices.
.
Integrated with Calibre, Wallabag, Wikipedia,
Google Translate and other content providers.
EOF
# use absolute path to luajit in reader.lua
sed -i 's,./luajit,/usr/lib/koreader/luajit,' "${BASE_DIR}/usr/lib/koreader/reader.lua"
# lintian complains if shared libraries have execute rights.
find "${BASE_DIR}" -type f -perm /+x -name '*.so*' -print0 | xargs -0 chmod a-x
# remove misc files that are already summarized in usr/share/doc/koreader
find "${BASE_DIR}" '(' -name "*.md" -o -name "LICENSE" ')' -type f -print0 | xargs -0 rm -rf
# add debian changelog
write_changelog "${BASE_DIR}/usr" "${VERSION}"
fakeroot dpkg-deb -b "${BASE_DIR}" "koreader-${VERSION}-${DEB_ARCH}.deb"
rm -rf tmp-debian