mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
66 lines
2.4 KiB
Bash
66 lines
2.4 KiB
Bash
pkgname=calibre
|
|
pkgver=2.40.0
|
|
pkgrel=1
|
|
pkgdesc="Ebook management application"
|
|
arch=('x86_64')
|
|
url="http://calibre-ebook.com/"
|
|
license=('GPL3')
|
|
depends=('python2-six' 'python2-dateutil' 'python2-cssutils' 'python2-cherrypy'
|
|
'python2-mechanize' 'podofo' 'libwmf'
|
|
'imagemagick' 'chmlib' 'python2-lxml' 'libusbx'
|
|
'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-chardet' 'python2-html5lib' 'python2-pygments' 'mtdev'
|
|
'desktop-file-utils')
|
|
makedepends=('qt5-x11extras' 'xdg-utils')
|
|
optdepends=('ipython2: to use calibre-debug'
|
|
'udisks: required for mounting certain devices'
|
|
'poppler: required for converting pdf to html')
|
|
screenshot=('https://lh5.googleusercontent.com/_lG58t3XWd3c/TcNwiXkAx_I/AAAAAAAAAEc/M34I4uY9UUY/s800/gui.jpeg')
|
|
install=${pkgname}.install
|
|
source=("http://download.calibre-ebook.com/${pkgver}/calibre-${pkgver}.tar.xz")
|
|
sha512sums=('101312a5a2a22bf741ee98924e23c5cec04c15cc8900756bcb3b7656e00486fd83167f2e33c66e87bd46d8d5992f0fe7041912077f250ee29dde07ed66046a4a')
|
|
|
|
prepare(){
|
|
cd "${pkgname}-${pkgver}"
|
|
|
|
# Remove unneeded files and libs
|
|
rm -rf resources/${pkgname}-portable.* \
|
|
src/cherrypy \
|
|
src/html5lib \
|
|
src/chardet
|
|
|
|
# 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/"
|
|
}
|