me
/
guix
Archived
1
0
Fork 0

gnu: libxcb: Add "doc" output.

* gnu/packages/xorg.scm (libxcb)[outputs]: New field.
[arguments]: Pass "--mandir".
master
Ludovic Courtès 2020-11-08 22:11:46 +01:00
parent f3d9892011
commit 70d310d5ad
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 6 additions and 2 deletions

View File

@ -5274,6 +5274,7 @@ protocol.")
(base32
"0d2chjgyn5lr9sfhacfvqgnj9l9faz11vn322a06jd6lk3dxcpm5"))))
(build-system gnu-build-system)
(outputs '("out" "doc")) ;5.5 MiB of man pages
(propagated-inputs
`(("libpthread-stubs" ,libpthread-stubs)
("libxau" ,libxau)
@ -5285,8 +5286,11 @@ protocol.")
`(("pkg-config" ,pkg-config)
("python" ,python-minimal-wrapper)))
(arguments
`(#:configure-flags '("--enable-xkb"
"--disable-static")))
`(#:configure-flags (list "--enable-xkb"
"--disable-static"
(string-append "--mandir="
(assoc-ref %outputs "doc")
"/share/man"))))
(home-page "https://xcb.freedesktop.org/")
(synopsis "The X C Binding (XCB) library")
(description