# Description: implementation of a client software for Microsoft's proprietary Remote Desktop Protocol # URL: http://www.rdesktop.org/ # Maintainer: KRAK3N Team, extra ports at krak3n dot my # Depends on: libxcursor gnutls name=rdesktop version=1.9.0 release=1 source=(https://github.com/${name}/${name}/releases/download/v${version}/${name}-${version}.tar.gz rdssl-rkey-get-exp-mod.patch) build() { cd ${name}-${version} patch -Np1 -i ../rdssl-rkey-get-exp-mod.patch autoreconf -fi ./configure \ --prefix=/usr \ --sysconfdir=/etc \ --localstatedir=/var \ --libdir=/usr/lib \ --libexecdir=/usr/lib/$name \ --infodir=/usr/share/info \ --mandir=/usr/share/man \ --with-ipv6 \ --disable-credssp \ --disable-smartcard make make DESTDIR=$PKG install }