summaryrefslogtreecommitdiff
path: root/px/packages/desktop-tools.scm
diff options
context:
space:
mode:
authorFranz Geffke <franz@pantherx.org>2024-04-03 14:59:52 +0100
committerFranz Geffke <franz@pantherx.org>2024-04-03 14:59:52 +0100
commit70c011e241181ebfb3b908ff7376abfb2c994ead (patch)
tree55d0baeec8fb7ccde7d46f37422da28f62c2eee0 /px/packages/desktop-tools.scm
parentd7c280103757d9926701414b8b7827aff1ee5739 (diff)
px: px-recoll: Remove package
Diffstat (limited to 'px/packages/desktop-tools.scm')
-rw-r--r--px/packages/desktop-tools.scm46
1 files changed, 0 insertions, 46 deletions
diff --git a/px/packages/desktop-tools.scm b/px/packages/desktop-tools.scm
index 1b4d747..4240903 100644
--- a/px/packages/desktop-tools.scm
+++ b/px/packages/desktop-tools.scm
@@ -44,52 +44,6 @@
#:use-module (px packages themes)
#:use-module (srfi srfi-1))
-(define-public px-recoll
- (package
- (inherit recoll)
- (name "px-recoll")
- (arguments
- '(#:tests? #f
- #:configure-flags '("--disable-webkit" ;no qtwebkit yet
- "--with-inotify" "--enable-recollq" "QMAKEPATH=")
- #:phases (modify-phases %standard-phases
- (add-after 'unpack 'patch-icon
- (lambda _
- ;; Update icon
- (substitute* '("desktop/recoll-searchgui.desktop")
- (("Icon=recoll")
- "Icon=preferences-desktop-search"))
- (substitute* '("qtgui/main.cpp")
- (("app.setWindowIcon\\(icon\\)")
- "app.setWindowIcon(QIcon::fromTheme(\"preferences-desktop-search\"))"))
- (substitute* '("qtgui/rclmain_w.cpp")
- (("QIcon\\(QString\\(\":/images/recoll.png\"\\)\\)")
- "QIcon::fromTheme(\"preferences-desktop-search\")"))
- ;; Enable show tray icon
- (substitute* '("qtgui/guiutils.cpp")
- (("showTrayIcon\", Bool, false")
- "showTrayIcon\", Bool, true"))
- ;; Enable show close to tray
- (substitute* '("qtgui/guiutils.cpp")
- (("closeToTray\", Bool, false")
- "closeToTray\", Bool, true"))
- ;; Enable desktop notification
- (substitute* '("qtgui/guiutils.cpp")
- ;
- (("trayMessages\", Bool, false")
- "trayMessages\", Bool, true"))
- ;; Rename Recoll to Advanced Search
- (substitute* '("desktop/recoll-searchgui.desktop")
- ;
- (("Name=Recoll")
- "Name=Advanced Search"))
- ;; Update category to Settings
- (substitute* '("desktop/recoll-searchgui.desktop")
- ;
- (("Categories=Qt;Utility;Filesystem;Database;")
- "Categories=Settings;"))
- #t)))))))
-
(define-public albert-launcher
(package
(name "albert-launcher")