mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
67 lines
2.5 KiB
Bash
67 lines
2.5 KiB
Bash
# maintainer: almack
|
|
|
|
pkgname=calibre
|
|
pkgver=0.9.41
|
|
pkgrel=1
|
|
pkgdesc="Ebook management application"
|
|
arch=('x86_64')
|
|
url="http://calibre.kovidgoyal.net/"
|
|
license=('GPL3')
|
|
depends=('python2' 'python2-imaging' 'libusb' 'pyqt' 'python-mechanize'
|
|
'imagemagick' 'dbus-python' 'python-lxml' 'python2-beautifulsoup' 'python2-dateutil'
|
|
'python-cssutils' 'desktop-file-utils' 'python2-dns' 'libmtp'
|
|
'podofo' 'xdg-utils' 'cherrypy' 'python2-pdf' 'unrar' 'chmlib' 'poppler'
|
|
'poppler-qt' 'icu' 'libwmf' 'libffi' 'python2-six' 'python2-netifaces' 'python2-cssselect')
|
|
makedepends=('python2-pycountry' 'qt-private-headers')
|
|
#optdepends=('ipython: to use calibre-debug')
|
|
screenshot=('https://lh5.googleusercontent.com/_lG58t3XWd3c/TcNwiXkAx_I/AAAAAAAAAEc/M34I4uY9UUY/s800/gui.jpeg')
|
|
install=calibre.install
|
|
source=("http://sourceforge.net/projects/calibre/files/${pkgver}/calibre-${pkgver}.tar.xz"
|
|
'desktop_integration.patch')
|
|
md5sums=('2037b44c90a66e97823a637edfa194ca'
|
|
'8353d1878c5a498b3e49eddef473605f')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}"
|
|
|
|
rm -rf src/cherrypy
|
|
rm -rf resources/${pkgname}-portable.*
|
|
mkdir -p src/calibre/plugins
|
|
|
|
sed -i -e "s/ldflags = shlex.split(ldflags)/ldflags = shlex.split(ldflags) + ['-fPIC']/" setup/extensions.py
|
|
|
|
sed -i -e 's:\(#!/usr/bin/env[ ]\+python$\|#!/usr/bin/python$\):\12:g' \
|
|
$(find . -regex ".*.py\|.*.recipe")
|
|
|
|
|
|
LANG='en_US.UTF-8' python2 setup.py build
|
|
#LANG='en_US.UTF-8' python2 setup.py translations
|
|
}
|
|
|
|
package() {
|
|
cd ${pkgname}
|
|
|
|
patch -p1 -i "${srcdir}/desktop_integration.patch"
|
|
|
|
# More on desktop integration (e.g. enforce Chakra defaults)
|
|
sed -i -e "/self.create_uninstaller()/,/os.rmdir(config_dir)/d" \
|
|
-e "s|self.opts.staging_sharedir, 'man/man1'|self.opts.staging_root, 'usr/share/man/man1'|" \
|
|
-e "s|manpath, prog+'.1'+__appname__+'.bz2'|manpath, prog+'.1'+'.bz2'|" \
|
|
-e "s|old_udev = '/etc|old_udev = '${pkgdir}/etc|" \
|
|
-e "s/^Name=calibre/Name=Calibre/g" src/calibre/linux.py
|
|
|
|
# Fix the environment module location
|
|
sed -i -e "s|(prefix=.*)|(prefix='$pkgdir/usr')|g" setup/install.py
|
|
|
|
mkdir -p ${pkgdir}/usr/lib/python2.7/site-packages
|
|
python2 setup.py install --root=${pkgdir}/ --prefix=/usr \
|
|
--staging-bindir=${pkgdir}/usr/bin \
|
|
--staging-libdir=${pkgdir}/usr/lib \
|
|
--staging-sharedir=${pkgdir}/usr/share
|
|
|
|
find ${pkgdir} -type d -empty -delete
|
|
|
|
python2 -m compileall "${pkgdir}/usr/lib/calibre/"
|
|
python2 -O -m compileall "${pkgdir}/usr/lib/calibre/"
|
|
}
|