gnu: freerdp: Update inputs.
* gnu/packages/rdesktop.scm (freerdp) [native-inputs]: Add libxslt, libxml2 and docbook-xsl. [inputs]: Add libjpeg, remove gstreamer, gst-plugins-base, libxml2 and libxslt. [arguments]: Enable features JPEG and SSE2 (on x86_64), and set up docbook-xsl.
This commit is contained in:
parent
cc81f1c349
commit
598b5481a4
@ -26,7 +26,9 @@
|
|||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
#:use-module (gnu packages compression)
|
#:use-module (gnu packages compression)
|
||||||
#:use-module (gnu packages cups)
|
#:use-module (gnu packages cups)
|
||||||
|
#:use-module (gnu packages docbook)
|
||||||
#:use-module (gnu packages gstreamer)
|
#:use-module (gnu packages gstreamer)
|
||||||
|
#:use-module (gnu packages image)
|
||||||
#:use-module (gnu packages linux)
|
#:use-module (gnu packages linux)
|
||||||
#:use-module (gnu packages pkg-config)
|
#:use-module (gnu packages pkg-config)
|
||||||
#:use-module (gnu packages pulseaudio)
|
#:use-module (gnu packages pulseaudio)
|
||||||
@ -86,6 +88,9 @@ to remotely control a user's Windows desktop.")
|
|||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)
|
`(("pkg-config" ,pkg-config)
|
||||||
|
("libxslt" ,libxslt)
|
||||||
|
("libxml2" ,libxml2)
|
||||||
|
("docbook-xsl" ,docbook-xsl)
|
||||||
("xmlto" ,xmlto)))
|
("xmlto" ,xmlto)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("libx11" ,libx11)
|
`(("libx11" ,libx11)
|
||||||
@ -98,21 +103,29 @@ to remotely control a user's Windows desktop.")
|
|||||||
("libxrender" ,libxrender)
|
("libxrender" ,libxrender)
|
||||||
("libxinerama" ,libxinerama)
|
("libxinerama" ,libxinerama)
|
||||||
("libxshmfence" ,libxshmfence)
|
("libxshmfence" ,libxshmfence)
|
||||||
("libxml2" ,libxml2)
|
|
||||||
("libxslt" ,libxslt)
|
|
||||||
("cups" ,cups)
|
("cups" ,cups)
|
||||||
("ffmpeg" ,ffmpeg-2.8)
|
("ffmpeg" ,ffmpeg-2.8)
|
||||||
|
("libjpeg" ,libjpeg)
|
||||||
("pulseaudio" ,pulseaudio)
|
("pulseaudio" ,pulseaudio)
|
||||||
("alsa-lib" ,alsa-lib)
|
("alsa-lib" ,alsa-lib)
|
||||||
("gstreamer" ,gstreamer)
|
|
||||||
("gst-plugins-base" ,gst-plugins-base)
|
|
||||||
("zlib" ,zlib)
|
("zlib" ,zlib)
|
||||||
("openssl" ,openssl)))
|
("openssl" ,openssl)))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags
|
`(#:configure-flags
|
||||||
'("-DCMAKE_INSTALL_LIBDIR=lib"
|
(list "-DCMAKE_INSTALL_LIBDIR=lib"
|
||||||
"-DWITH_PULSE=ON"
|
"-DCMAKE_BUILD_TYPE=RELEASE"
|
||||||
"-DWITH_CUPS=ON")
|
"-DWITH_JPEG=ON"
|
||||||
|
,@(if (string-prefix? "x86_64"
|
||||||
|
(or (%current-target-system)
|
||||||
|
(%current-system)))
|
||||||
|
'("-DWITH_SSE2=ON")
|
||||||
|
'())
|
||||||
|
(string-append "-DDOCBOOKXSL_DIR="
|
||||||
|
(assoc-ref %build-inputs "docbook-xsl")
|
||||||
|
"/xml/xsl/docbook-xsl-"
|
||||||
|
,(package-version docbook-xsl))
|
||||||
|
"-DWITH_PULSE=ON"
|
||||||
|
"-DWITH_CUPS=ON")
|
||||||
#:tests? #f)) ; no 'test' target
|
#:tests? #f)) ; no 'test' target
|
||||||
(home-page "https://www.freerdp.com")
|
(home-page "https://www.freerdp.com")
|
||||||
(synopsis "Remote Desktop Protocol implementation")
|
(synopsis "Remote Desktop Protocol implementation")
|
||||||
|
Loading…
Reference in New Issue
Block a user