gnu: calibre: Use "linux.py" to install desktop files.
* gnu/packages/ebook.scm (calibre)[arguments]<#:phases>[configure]: Modify. [install-mimetypes]: Remove. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
This commit is contained in:
parent
ad74978a95
commit
6e1ab5fadb
|
@ -102,9 +102,6 @@
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)
|
`(("pkg-config" ,pkg-config)
|
||||||
("qtbase" ,qtbase) ; for qmake
|
("qtbase" ,qtbase) ; for qmake
|
||||||
;; xdg-utils is supposed to be used for desktop integration, but it
|
|
||||||
;; also creates lots of messages
|
|
||||||
;; mkdir: cannot create directory '/homeless-shelter': Permission denied
|
|
||||||
("python2-flake8" ,python2-flake8)
|
("python2-flake8" ,python2-flake8)
|
||||||
("xdg-utils" ,xdg-utils)))
|
("xdg-utils" ,xdg-utils)))
|
||||||
;; Beautifulsoup3 is bundled but obsolete and not packaged, so just leave it bundled.
|
;; Beautifulsoup3 is bundled but obsolete and not packaged, so just leave it bundled.
|
||||||
|
@ -174,15 +171,24 @@
|
||||||
"href=\"favicon.ico\""))
|
"href=\"favicon.ico\""))
|
||||||
#t))
|
#t))
|
||||||
(add-before 'build 'configure
|
(add-before 'build 'configure
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||||
(let ((podofo (assoc-ref inputs "podofo"))
|
(let ((podofo (assoc-ref inputs "podofo"))
|
||||||
(pyqt (assoc-ref inputs "python2-pyqt")))
|
(pyqt (assoc-ref inputs "python2-pyqt"))
|
||||||
|
(out (assoc-ref outputs "out")))
|
||||||
(substitute* "setup/build_environment.py"
|
(substitute* "setup/build_environment.py"
|
||||||
(("sys.prefix") (string-append "'" pyqt "'")))
|
(("sys.prefix") (string-append "'" pyqt "'")))
|
||||||
(substitute* "src/calibre/ebooks/pdf/pdftohtml.py"
|
(substitute* "src/calibre/ebooks/pdf/pdftohtml.py"
|
||||||
(("PDFTOHTML = 'pdftohtml'")
|
(("PDFTOHTML = 'pdftohtml'")
|
||||||
(string-append "PDFTOHTML = \"" (assoc-ref inputs "poppler")
|
(string-append "PDFTOHTML = \"" (assoc-ref inputs "poppler")
|
||||||
"/bin/pdftohtml\"")))
|
"/bin/pdftohtml\"")))
|
||||||
|
|
||||||
|
;; Calibre thinks we are installing desktop files into a home
|
||||||
|
;; directory, but here we butcher the script in to installing
|
||||||
|
;; to calibres /share directory.
|
||||||
|
(setenv "XDG_DATA_HOME" (string-append out "/share"))
|
||||||
|
(substitute* "src/calibre/linux.py"
|
||||||
|
(("'~/.local/share'") "''"))
|
||||||
|
|
||||||
(setenv "PODOFO_INC_DIR" (string-append podofo "/include/podofo"))
|
(setenv "PODOFO_INC_DIR" (string-append podofo "/include/podofo"))
|
||||||
(setenv "PODOFO_LIB_DIR" (string-append podofo "/lib"))
|
(setenv "PODOFO_LIB_DIR" (string-append podofo "/lib"))
|
||||||
;; This informs the tests we are a continuous integration
|
;; This informs the tests we are a continuous integration
|
||||||
|
@ -204,12 +210,6 @@
|
||||||
"/share/fonts/truetype")))
|
"/share/fonts/truetype")))
|
||||||
(delete-file-recursively font-dest)
|
(delete-file-recursively font-dest)
|
||||||
(symlink font-src font-dest))
|
(symlink font-src font-dest))
|
||||||
#t))
|
|
||||||
(add-after 'unbundle-font-liberation 'install-mimetypes
|
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
|
||||||
(install-file "resources/calibre-mimetypes.xml"
|
|
||||||
(string-append (assoc-ref outputs "out")
|
|
||||||
"/share/mime/packages"))
|
|
||||||
#t)))))
|
#t)))))
|
||||||
(home-page "http://calibre-ebook.com/")
|
(home-page "http://calibre-ebook.com/")
|
||||||
(synopsis "E-book library management software")
|
(synopsis "E-book library management software")
|
||||||
|
|
Loading…
Reference in New Issue