gnu: harfbuzz: Add "bin" output.
* gnu/packages/gtk.scm (harfbuzz)[outputs]: New field. [arguments]<#:configure-flags>: Pass '--bindir'.master
parent
fd9b3b43ab
commit
eb6afbcde7
|
@ -154,6 +154,7 @@ affine transformation (scale, rotation, shear, etc.).")
|
||||||
(base32
|
(base32
|
||||||
"1xrxlrvgyr6mm9qjxmkif2kvcah082y94gf1vqi0f0bdl1g8gp7b"))))
|
"1xrxlrvgyr6mm9qjxmkif2kvcah082y94gf1vqi0f0bdl1g8gp7b"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
|
(outputs '("out" "bin"))
|
||||||
(inputs
|
(inputs
|
||||||
`(("cairo" ,cairo)))
|
`(("cairo" ,cairo)))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
|
@ -167,7 +168,9 @@ affine transformation (scale, rotation, shear, etc.).")
|
||||||
("python" ,python-2))) ; incompatible with Python 3 (print syntax)
|
("python" ,python-2))) ; incompatible with Python 3 (print syntax)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags `("--with-graphite2"
|
`(#:configure-flags `("--with-graphite2"
|
||||||
"--with-gobject")))
|
"--with-gobject"
|
||||||
|
,(string-append
|
||||||
|
"--bindir=" (assoc-ref %outputs "bin") "/bin"))))
|
||||||
(synopsis "OpenType text shaping engine")
|
(synopsis "OpenType text shaping engine")
|
||||||
(description
|
(description
|
||||||
"HarfBuzz is an OpenType text shaping engine.")
|
"HarfBuzz is an OpenType text shaping engine.")
|
||||||
|
|
Reference in New Issue