mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-04-21 15:02:59 +02:00
IGN:...
This commit is contained in:
parent
9a400ae39a
commit
4b22654837
1 changed files with 5 additions and 0 deletions
|
|
@ -16,6 +16,7 @@
|
|||
QTDIR = '/usr/lib/qt4'
|
||||
QTDLLS = ('QtCore', 'QtGui', 'QtNetwork', 'QtSvg', 'QtXml')
|
||||
EXTRAS = ('/usr/lib/python2.5/site-packages/PIL', os.path.expanduser('~/ipython/IPython'))
|
||||
SQLITE = '/usr/lib/libsqlite3.so.0'
|
||||
|
||||
|
||||
CALIBRESRC = os.path.join(CALIBREPREFIX, 'src')
|
||||
|
|
@ -112,6 +113,10 @@ def run_pyinstaller(args=sys.argv):
|
|||
print 'Adding external programs...'
|
||||
binaries += [('clit', CLIT, 'BINARY'), ('pdftohtml', PDFTOHTML, 'BINARY'),
|
||||
('libunrar.so', LIBUNRAR, 'BINARY')]
|
||||
|
||||
print 'Adding external libraries...'
|
||||
binaries += [(os.path.basename(SQLITE), SQLITE, 'BINARY')]
|
||||
|
||||
qt = []
|
||||
for dll in QTDLLS:
|
||||
path = os.path.join(QTDIR, 'lib'+dll+'.so.4')
|
||||
|
|
|
|||
Loading…
Reference in a new issue