wok view freerdp/receipt @ rev 23057

Add perl-dev
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Mar 07 16:51:42 2020 +0100 (2020-03-07)
parents d607766ba634
children bfabe25c21ff
line source
1 # SliTaz package receipt.
3 PACKAGE="freerdp"
4 VERSION="2.0.0-rc4"
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.tar.gz"
10 WEB_SITE="https://www.freerdp.com/"
11 WGET_URL="https://pub.freerdp.com/releases/$TARBALL"
13 DEPENDS="zlib libkrb5 libssl libcomerr cups alsa-lib libxcb xorg-libXcursor \
14 ffmpeg xorg-libXv pcsc-lite"
15 BUILD_DEPENDS="zlib-dev openssl-dev cups-dev alsa-lib-dev libxcb-dev xorg-dev \
16 xorg-dev-proto wget cmake ffmpeg-dev xorg-libXv-dev pcsc-lite-dev"
17 TAGS="rdp remote-desktop"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 cmake -DWITH_PCSC=ON -DCMAKE_INSTALL_PREFIX=/usr . &&
23 make &&
24 make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib/freerdp $fs/usr/share
31 cp -a $install/usr/bin $fs/usr
32 cp -a $install/usr/lib/*.so* $fs/usr/lib
33 }