gnu: recutils: Use correct bash headers.
* gnu/packages/databases.scm (recutils)[arguments]: Convert to G-Expressions. Drop gratuitous dirname. [native-inputs]: Drop labels. Move bash:include... [inputs]: ... here. Also add regular bash.master
parent
d54faf155a
commit
e4087930f3
|
@ -1556,20 +1556,17 @@ organized in a hash table or B+ tree.")
|
|||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
(list #:configure-flags
|
||||
'(list "--disable-static"
|
||||
(string-append "--with-bash-headers="
|
||||
(dirname (search-input-directory
|
||||
%build-inputs
|
||||
"include/bash"))))))
|
||||
#~(list "--disable-static"
|
||||
(string-append "--with-bash-headers="
|
||||
(search-input-directory %build-inputs
|
||||
"include/bash")))))
|
||||
(native-inputs
|
||||
;; XXX Without labels, the default 'configure phase picks the wrong "bash".
|
||||
`(("bc" ,bc)
|
||||
("bash:include" ,bash "include")
|
||||
("check" ,check)
|
||||
("pkg-config" ,pkg-config)))
|
||||
(list bc check-0.14 pkg-config))
|
||||
(inputs
|
||||
;; TODO: Add more optional inputs.
|
||||
(list curl
|
||||
(list bash ; /bin/bash for native compilation
|
||||
`(,bash "include")
|
||||
curl
|
||||
libgcrypt
|
||||
`(,util-linux "lib")))
|
||||
(synopsis "Manipulate plain text files as databases")
|
||||
|
|
Reference in New Issue