mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: iniparser: Use #:make-flags.
* gnu/packages/samba.scm (iniparser)[arguments]: Use #:make-flags to set ‘CC’ instead of patching the Makefile. Remove fruitless SYMLINK call.
This commit is contained in:
parent
33fa13eac1
commit
cf52c9255d
1 changed files with 7 additions and 6 deletions
|
@ -104,18 +104,19 @@ (define-public iniparser
|
|||
"1flj7srvh2hp9ls96qz922bklyhw7f27mmn23b16839zpdjddfz0"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:phases
|
||||
`(#:make-flags
|
||||
(list "CC=gcc")
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(replace 'configure
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(substitute* '("Makefile" "test/Makefile")
|
||||
(("/usr/lib")
|
||||
(string-append (assoc-ref outputs "out") "/lib"))
|
||||
(("\\?= gcc") "= gcc"))))
|
||||
(string-append (assoc-ref outputs "out") "/lib")))))
|
||||
(replace 'build
|
||||
(lambda _
|
||||
(and (zero? (system* "make" "libiniparser.so"))
|
||||
(symlink "libiniparser.so.0" "libiniparser.so"))))
|
||||
(lambda* (#:key make-flags #:allow-other-keys)
|
||||
(apply invoke "make" "libiniparser.so"
|
||||
make-flags)))
|
||||
(replace 'install
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let* ((out (assoc-ref outputs "out"))
|
||||
|
|
Loading…
Reference in a new issue