wok-next view freerdp/receipt @ rev 20990

Remove mate116 stash
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Oct 02 22:23:34 2018 +0300 (2018-10-02)
parents d43bf7aae921
children d5aab818505e
line source
1 # SliTaz package receipt v2.
3 PACKAGE="freerdp"
4 VERSION="2.0.0-rc0"
5 CATEGORY="network"
6 SHORT_DESC="Remote Desktop Protocol (RDP) client for Windows terminal server"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="Apache"
9 TARBALL="$PACKAGE-$VERSION.zip"
10 WEB_SITE="http://www.freerdp.com/"
11 WGET_URL="https://github.com/FreeRDP/FreeRDP/archive/$VERSION.zip"
13 BUILD_DEPENDS="zlib-dev openssl-dev cups-dev alsa-lib-dev xorg-libxcb-dev xorg-dev \
14 xorg-dev-proto cmake ffmpeg-dev xorg-libXv-dev pcsc-lite-dev"
15 SPLIT="freerdp freerdp-dev"
17 compile_rules() {
18 cmake \
19 -DWITH_PCSC=ON \
20 -DCMAKE_INSTALL_PREFIX=/usr \
21 . &&
22 make &&
23 make DESTDIR=$DESTDIR install
24 }
26 genpkg_rules() {
27 case $PACKAGE in
28 freerdp)
29 copy @std
30 DEPENDS="zlib libkrb5 openssl libcomerr cups alsa-lib xorg-libxcb \
31 xorg-libXcursor ffmpeg xorg-libXv pcsc-lite"
32 TAGS="rdp remote-desktop"
33 ;;
34 *-dev)
35 copy @dev
36 DEPENDS="fftw openssl-dev"
37 ;;
38 esac
39 }