mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: system-config-printer: Fix build on riscv64-linux.
* gnu/packages/gnome.scm (system-config-printer)[arguments]: When config is an input add a phase to replace config.guess and config.sub. [native-inputs]: Add config when building for riscv64-linux. Change-Id: Iad0d2cbadd9c9f90b88e97e7690ad3b0ad0e6882
This commit is contained in:
parent
488a39503a
commit
3ccec0598d
1 changed files with 24 additions and 10 deletions
|
@ -3019,6 +3019,16 @@ (define-public system-config-printer
|
|||
(substitute* "Makefile.am"
|
||||
(("/bin/bash") (which "bash")))
|
||||
(delete-file "configure")))
|
||||
#$@(if (this-package-native-input "config")
|
||||
#~((add-after 'unpack 'update-config-scripts
|
||||
(lambda* (#:key native-inputs inputs #:allow-other-keys)
|
||||
(for-each (lambda (file)
|
||||
(install-file
|
||||
(search-input-file
|
||||
(or native-inputs inputs)
|
||||
(string-append "/bin/" file)) "."))
|
||||
'("config.guess" "config.sub")))))
|
||||
#~())
|
||||
(add-after 'install 'add-install-to-pythonpath
|
||||
(@@ (guix build python-build-system) add-install-to-pythonpath))
|
||||
(add-after 'add-install-to-pythonpath 'wrap-for-python
|
||||
|
@ -3051,16 +3061,20 @@ (define-public system-config-printer
|
|||
libnotify
|
||||
packagekit))
|
||||
(native-inputs
|
||||
(list pkg-config
|
||||
desktop-file-utils
|
||||
glib
|
||||
autoconf
|
||||
automake
|
||||
gettext-minimal
|
||||
xmlto
|
||||
docbook-xml-4.1.2
|
||||
docbook-xsl
|
||||
libxml2))
|
||||
(append
|
||||
(if (target-riscv64?)
|
||||
(list config)
|
||||
'())
|
||||
(list pkg-config
|
||||
desktop-file-utils
|
||||
glib
|
||||
autoconf
|
||||
automake
|
||||
gettext-minimal
|
||||
xmlto
|
||||
docbook-xml-4.1.2
|
||||
docbook-xsl
|
||||
libxml2)))
|
||||
(home-page "https://github.com/zdohnal/system-config-printer")
|
||||
(synopsis "CUPS administration tool")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue