mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 22:26:40 -05:00
gnu: keyutils: Gexp arguments.
* gnu/packages/crypto.scm (keyutils)[arguments]: Rewrite as a keyword/gexp list.
This commit is contained in:
parent
9c42d1fa00
commit
036a503942
1 changed files with 13 additions and 12 deletions
|
@ -383,18 +383,19 @@ (define-public keyutils
|
|||
"$(LNS) "))))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:phases (modify-phases %standard-phases
|
||||
(delete 'configure)) ; no configure script
|
||||
#:make-flags (list ,(string-append "CC=" (cc-for-target))
|
||||
"RPATH=-Wl,-rpath,$(DESTDIR)$(LIBDIR)"
|
||||
(string-append "DESTDIR="
|
||||
(assoc-ref %outputs "out"))
|
||||
"INCLUDEDIR=/include"
|
||||
"LIBDIR=/lib"
|
||||
"MANDIR=/share/man"
|
||||
"SHAREDIR=/share/keyutils"
|
||||
"NO_ARLIB=1") ; omit static libraries
|
||||
#:test-target "test"))
|
||||
(list #:make-flags
|
||||
#~(list (string-append "CC=" #$(cc-for-target))
|
||||
"RPATH=-Wl,-rpath,$(DESTDIR)$(LIBDIR)"
|
||||
(string-append "DESTDIR=" #$output)
|
||||
"INCLUDEDIR=/include"
|
||||
"LIBDIR=/lib"
|
||||
"MANDIR=/share/man"
|
||||
"SHAREDIR=/share/keyutils"
|
||||
"NO_ARLIB=1") ; omit static libraries
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(delete 'configure)) ; no configure script
|
||||
#:test-target "test"))
|
||||
(inputs
|
||||
(list mit-krb5))
|
||||
(home-page "https://people.redhat.com/dhowells/keyutils/")
|
||||
|
|
Loading…
Reference in a new issue