wok-current annotate freerdp/receipt @ rev 23069
scilab: update for hdf5
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Mar 10 08:35:31 2020 +0100 (2020-03-10) |
parents | d607766ba634 |
children | bfabe25c21ff |
rev | line source |
---|---|
pascal@8256 | 1 # SliTaz package receipt. |
pascal@8256 | 2 |
pascal@8256 | 3 PACKAGE="freerdp" |
pascal@21242 | 4 VERSION="2.0.0-rc4" |
pascal@8256 | 5 CATEGORY="network" |
pascal@8256 | 6 SHORT_DESC="Remote Desktop Protocol (RDP) client for Windows terminal server" |
pascal@8256 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@15215 | 8 LICENSE="Apache" |
pascal@21242 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@21242 | 10 WEB_SITE="https://www.freerdp.com/" |
pascal@21242 | 11 WGET_URL="https://pub.freerdp.com/releases/$TARBALL" |
pascal@15215 | 12 |
pascal@13310 | 13 DEPENDS="zlib libkrb5 libssl libcomerr cups alsa-lib libxcb xorg-libXcursor \ |
pascal@13313 | 14 ffmpeg xorg-libXv pcsc-lite" |
pascal@13310 | 15 BUILD_DEPENDS="zlib-dev openssl-dev cups-dev alsa-lib-dev libxcb-dev xorg-dev \ |
pascal@13313 | 16 xorg-dev-proto wget cmake ffmpeg-dev xorg-libXv-dev pcsc-lite-dev" |
pascal@8256 | 17 TAGS="rdp remote-desktop" |
pascal@8256 | 18 |
pascal@8256 | 19 # Rules to configure and make the package. |
pascal@8256 | 20 compile_rules() |
pascal@8256 | 21 { |
pascal@13313 | 22 cmake -DWITH_PCSC=ON -DCMAKE_INSTALL_PREFIX=/usr . && |
pascal@8256 | 23 make && |
pascal@13310 | 24 make DESTDIR=$DESTDIR install |
pascal@8256 | 25 } |
pascal@8256 | 26 |
pascal@8256 | 27 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@8256 | 28 genpkg_rules() |
pascal@8256 | 29 { |
pascal@8256 | 30 mkdir -p $fs/usr/lib/freerdp $fs/usr/share |
pascal@13310 | 31 cp -a $install/usr/bin $fs/usr |
pascal@13310 | 32 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pascal@8256 | 33 } |