gnu: bitlbee: Use INVOKE.
* gnu/packages/messaging.scm (bitlbee)[arguments]: Use INVOKE.
This commit is contained in:
parent
7d416066cd
commit
bea06837a3
|
@ -186,18 +186,18 @@ end-to-end encryption.")
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'install 'install-etc
|
(add-after 'install 'install-etc
|
||||||
(lambda* (#:key (make-flags '()) #:allow-other-keys)
|
(lambda* (#:key (make-flags '()) #:allow-other-keys)
|
||||||
(zero? (apply system* "make" "install-etc" make-flags))))
|
(apply invoke "make" "install-etc" make-flags)))
|
||||||
(add-after 'install-etc 'install-lib
|
(add-after 'install-etc 'install-lib
|
||||||
(lambda* (#:key (make-flags '()) #:allow-other-keys)
|
(lambda* (#:key (make-flags '()) #:allow-other-keys)
|
||||||
(zero? (apply system* "make" "install-dev" make-flags))))
|
(apply invoke "make" "install-dev" make-flags)))
|
||||||
(replace 'configure
|
(replace 'configure
|
||||||
;; bitlbee's configure script does not tolerate many of the
|
;; bitlbee's configure script does not tolerate many of the
|
||||||
;; variable settings that Guix would pass to it.
|
;; variable settings that Guix would pass to it.
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(zero? (system* "./configure"
|
(invoke "./configure"
|
||||||
(string-append "--prefix="
|
(string-append "--prefix="
|
||||||
(assoc-ref outputs "out"))
|
(assoc-ref outputs "out"))
|
||||||
"--otr=1")))))))
|
"--otr=1"))))))
|
||||||
(synopsis "IRC to instant messaging gateway")
|
(synopsis "IRC to instant messaging gateway")
|
||||||
(description "BitlBee brings IM (instant messaging) to IRC clients, for
|
(description "BitlBee brings IM (instant messaging) to IRC clients, for
|
||||||
people who have an IRC client running all the time and don't want to run an
|
people who have an IRC client running all the time and don't want to run an
|
||||||
|
|
Loading…
Reference in New Issue