gnu: libunistring: Rewrite using gexps.
* gnu/packages/libunistring.scm (libunistring)[arguments]: Rewrite using gexps. Remove trailing #t.master
parent
e7fa95dc46
commit
3acb615a38
|
@ -27,6 +27,7 @@
|
||||||
#:use-module (guix licenses)
|
#:use-module (guix licenses)
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
|
#:use-module (guix gexp)
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
#:use-module (gnu packages)
|
#:use-module (gnu packages)
|
||||||
#:use-module (gnu packages base))
|
#:use-module (gnu packages base))
|
||||||
|
@ -50,17 +51,16 @@
|
||||||
;; Work around parallel build issue whereby C files may be compiled before
|
;; Work around parallel build issue whereby C files may be compiled before
|
||||||
;; config.h is built: see <http://hydra.gnu.org/build/59381/nixlog/2/raw> and
|
;; config.h is built: see <http://hydra.gnu.org/build/59381/nixlog/2/raw> and
|
||||||
;; <http://lists.openembedded.org/pipermail/openembedded-core/2012-April/059850.html>.
|
;; <http://lists.openembedded.org/pipermail/openembedded-core/2012-April/059850.html>.
|
||||||
'(#:parallel-build? #f
|
(list
|
||||||
#:phases (modify-phases %standard-phases
|
#:parallel-build? #f
|
||||||
(add-after 'install 'move-static-library
|
#:phases
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
#~(modify-phases %standard-phases
|
||||||
(let ((out (assoc-ref outputs "out"))
|
(add-after 'install 'move-static-library
|
||||||
(static (assoc-ref outputs "static")))
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(with-directory-excursion (string-append out "/lib")
|
(with-directory-excursion (string-append #$output "/lib")
|
||||||
(install-file "libunistring.a"
|
(install-file "libunistring.a"
|
||||||
(string-append static "/lib"))
|
(string-append #$output:static "/lib"))
|
||||||
(delete-file "libunistring.a")
|
(delete-file "libunistring.a")))))))
|
||||||
#t)))))))
|
|
||||||
(synopsis "C library for manipulating Unicode strings")
|
(synopsis "C library for manipulating Unicode strings")
|
||||||
(description
|
(description
|
||||||
"GNU libunistring is a library providing functions to manipulate
|
"GNU libunistring is a library providing functions to manipulate
|
||||||
|
|
Reference in New Issue