blob: 564d0f876879b19933c33e209f1369807baa1911 (
plain)
1 # Description: Remote desktop protocol implementation.
2 # URL: https://www.freerdp.com/
3 # Maintainer: CRUX System Team, core-ports at crux dot nu
4 # Depends on: cmake glib xorg-libxcursor xorg-libxinerama xorg-libxkbfile xorg-libxrandr xorg-libxv
5 # Optional: ffmpeg gst-plugins-base alsa-lib cups directfb neon pulseaudio xmlto
6
7 name=freerdp2
8 version=2.2.0
9 release=1
10 source=(https://pub.freerdp.com/releases/freerdp-$version.tar.gz)
11
12 build() {
13 cmake -S freerdp-$version -B build \
14 -D CMAKE_BUILD_TYPE=RELEASE \
15 -D CMAKE_C_FLAGS_RELEASE="$CFLAGS" \
16 -D CMAKE_INSTALL_PREFIX=/usr \
17 -D CMAKE_INSTALL_LIBDIR=lib \
18 -D CMAKE_SKIP_RPATH=ON \
19 -D WITH_SERVER=OFF \
20 -D WITH_CLIENT=ON \
21 -D WITH_LIBSYSTEMD=OFF \
22 -D WITH_WAYLAND=OFF
23 cmake --build build
24 DESTDIR=$PKG cmake --install build
25 }
|