mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-14 07:00:32 -05:00
gnu: pcmanfm-qt: Update to 1.1.0.
* gnu/packages/lxqt.scm (pcmanfm-qt) [version]: Update to 1.1.0. [inputs]: Add lxqt-themes. [arguments]: Remove patch-source phase. Add patch-settings.conf.in phase.
This commit is contained in:
parent
892d8995de
commit
50fb051d97
1 changed files with 15 additions and 16 deletions
|
@ -843,32 +843,31 @@ (define-public libfm-qt
|
||||||
(define-public pcmanfm-qt
|
(define-public pcmanfm-qt
|
||||||
(package
|
(package
|
||||||
(name "pcmanfm-qt")
|
(name "pcmanfm-qt")
|
||||||
(version "0.17.0")
|
(version "1.1.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://github.com/lxqt/" name "/releases/download/"
|
(uri (string-append "https://github.com/lxqt/" name "/releases/download/"
|
||||||
version "/" name "-" version ".tar.xz"))
|
version "/" name "-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1axs7dnh2z08ygy28iipfbgfck15k2i2pwlf0v8d8axjrmavzb3l"))))
|
(base32 "0pwl2j5kbs86vmq86phavq89bl2i82ic839bjk0v8kmxm9q2mrh9"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:tests? #f ; no tests
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(add-before 'configure 'patch-settings.conf.in
|
||||||
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
|
(let ((wallpaper (search-input-file inputs
|
||||||
|
"share/lxqt/wallpapers/waves-logo.png")))
|
||||||
|
(substitute* "config/pcmanfm-qt/lxqt/settings.conf.in"
|
||||||
|
(("Wallpaper=.*")
|
||||||
|
(string-append "Wallpaper=" wallpaper "\n")))))))))
|
||||||
(inputs
|
(inputs
|
||||||
(list libfm-qt qtbase-5 qtx11extras))
|
(list libfm-qt qtbase-5 qtx11extras lxqt-themes))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list pkg-config qttools-5 lxqt-build-tools))
|
(list pkg-config qttools-5 lxqt-build-tools))
|
||||||
(arguments
|
|
||||||
'(#:tests? #f ; no tests
|
|
||||||
#:phases
|
|
||||||
(modify-phases %standard-phases
|
|
||||||
(add-after 'unpack 'patch-source
|
|
||||||
(lambda _
|
|
||||||
(substitute* '("autostart/CMakeLists.txt")
|
|
||||||
(("DESTINATION \"\\$\\{LXQT_ETC_XDG_DIR\\}")
|
|
||||||
"DESTINATION \"etc/xdg"))
|
|
||||||
(substitute* '("config/pcmanfm-qt/lxqt/settings.conf.in")
|
|
||||||
(("@LXQT_SHARE_DIR@")
|
|
||||||
"/run/current-system/profile/share/lxqt" ))
|
|
||||||
#t)))))
|
|
||||||
(home-page "https://lxqt-project.org")
|
(home-page "https://lxqt-project.org")
|
||||||
(synopsis "File manager and desktop icon manager")
|
(synopsis "File manager and desktop icon manager")
|
||||||
(description "PCManFM-Qt is the Qt port of PCManFM, the file manager of
|
(description "PCManFM-Qt is the Qt port of PCManFM, the file manager of
|
||||||
|
|
Loading…
Reference in a new issue