mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
63 lines
2.3 KiB
Bash
63 lines
2.3 KiB
Bash
pkgname=calibre
|
|
pkgver=3.23.0
|
|
pkgrel=1
|
|
pkgdesc="Ebook management application"
|
|
arch=('x86_64')
|
|
url="https://calibre-ebook.com/"
|
|
license=('GPL3')
|
|
depends=('python2-six' 'python2-dateutil' 'python2-cssutils' 'python2-msgpack'
|
|
'python2-dukpy' 'python2-mechanize' 'podofo' 'libwmf'
|
|
'imagemagick' 'chmlib' 'python2-lxml' 'libusbx' 'python2-html5-parser'
|
|
'python2-pillow' 'shared-mime-info' 'python2-dns'
|
|
'python2-pyqt5' 'python2-psutil' 'icu' 'libmtp' 'python2-dbus'
|
|
'python2-netifaces' 'python2-cssselect' 'python2-apsw' 'qt5-webkit'
|
|
'qt5-svg' 'python2-regex' 'python2-pygments' 'mtdev'
|
|
'desktop-file-utils' 'udisks2')
|
|
makedepends=('qt5-x11extras' 'xdg-utils')
|
|
optdepends=('ipython2: to use calibre-debug'
|
|
'poppler: required for converting pdf to html'
|
|
'kdialog: to use native dialog')
|
|
screenshot=('https://lh5.googleusercontent.com/_lG58t3XWd3c/TcNwiXkAx_I/AAAAAAAAAEc/M34I4uY9UUY/s800/gui.jpeg')
|
|
install=${pkgname}.install
|
|
source=("https://download.calibre-ebook.com/${pkgver}/calibre-${pkgver}.tar.xz")
|
|
sha256sums=('c98564e6b5599a4838c68b8266559a487d15abfc04331ad850fcbe09db884337')
|
|
|
|
prepare(){
|
|
cd "${pkgname}-${pkgver}"
|
|
|
|
# Remove unneeded files
|
|
rm -rf resources/${pkgname}-portable.*
|
|
|
|
# Desktop integration (e.g. enforce arch defaults)
|
|
sed -e "/self.create_uninstaller()/,/os.rmdir(config_dir)/d" \
|
|
-e "/cc(\['xdg-desktop-menu', 'forceupdate'\])/d" \
|
|
-e "/cc(\['xdg-mime', 'install', MIME\])/d" \
|
|
-e "s/'ctc-posml'/'text' not in mt and 'pdf' not in mt and 'xhtml'/" \
|
|
-e "s/^Name=calibre/Name=Calibre/g" \
|
|
-i src/calibre/linux.py
|
|
}
|
|
|
|
build() {
|
|
cd "${pkgname}-${pkgver}"
|
|
|
|
LANG='en_US.UTF-8' python2 setup.py build
|
|
LANG='en_US.UTF-8' python2 setup.py gui
|
|
}
|
|
|
|
package() {
|
|
cd "${pkgname}-${pkgver}"
|
|
|
|
install -d "${pkgdir}/usr/share/zsh/site-functions" \
|
|
"${pkgdir}"/usr/share/{applications,desktop-directories,icons/hicolor}
|
|
|
|
install -Dm644 resources/calibre-mimetypes.xml \
|
|
"${pkgdir}/usr/share/mime/packages/calibre-mimetypes.xml"
|
|
|
|
XDG_DATA_DIRS="${pkgdir}/usr/share" LANG='en_US.UTF-8' \
|
|
python2 setup.py install --staging-root="${pkgdir}/usr" --prefix=/usr
|
|
|
|
# Compiling bytecode FS#33392
|
|
python2 -m compileall "${pkgdir}/usr/lib/calibre/"
|
|
python2 -O -m compileall "${pkgdir}/usr/lib/calibre/"
|
|
}
|