wok-6.x annotate rdesktop/receipt @ rev 22003
updated tahoe-lafs (1.10.1 -> 1.13.0)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Oct 18 17:00:56 2019 +0100 (2019-10-18) |
parents | 3909f5910317 |
children | 1c4a5b100a45 |
rev | line source |
---|---|
pascal@63 | 1 # SliTaz package receipt. |
pascal@63 | 2 |
pascal@63 | 3 PACKAGE="rdesktop" |
Hans-G?nter@21834 | 4 VERSION="1.8.6" |
pankso@203 | 5 CATEGORY="network" |
Hans-G?nter@21834 | 6 TAGS="rdp remote-desktop" |
Hans-G?nter@21834 | 7 SHORT_DESC="Remote Desktop Protocol (RDP) client for Windows terminal server." |
pascal@63 | 8 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@14999 | 9 LICENSE="GPL3" |
Hans-G?nter@21834 | 10 WEB_SITE="https://www.rdesktop.org/" |
Hans-G?nter@21834 | 11 |
pascal@63 | 12 TARBALL="$PACKAGE-$VERSION.tar.gz" |
Hans-G?nter@21834 | 13 WGET_URL="https://github.com/$PACKAGE/$PACKAGE/archive/v$VERSION.tar.gz" |
pascal@10451 | 14 |
Hans-G?nter@21834 | 15 DEPENDS="alsa-lib glibc-base libao libcrypto libsamplerate pcsc-lite \ |
Hans-G?nter@21834 | 16 xorg-libX11 xorg-libXau xorg-libXdmcp" |
Hans-G?nter@21834 | 17 BUILD_DEPENDS="openssl-dev pcsc-lite-dev xorg-dev" |
pascal@63 | 18 |
pascal@63 | 19 # Rules to configure and make the package. |
pascal@63 | 20 compile_rules() |
pascal@63 | 21 { |
Hans-G?nter@21834 | 22 ./bootstrap && |
Hans-G?nter@21834 | 23 ./configure \ |
Hans-G?nter@21834 | 24 --prefix=/usr \ |
Hans-G?nter@21834 | 25 --mandir=/usr/share/man \ |
Hans-G?nter@21834 | 26 --disable-credssp \ |
pascal@16416 | 27 $CONFIGURE_ARGS && |
pascal@2447 | 28 make && |
pascal@14999 | 29 make DESTDIR=$DESTDIR install |
pascal@63 | 30 } |
pascal@63 | 31 |
pascal@63 | 32 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@63 | 33 genpkg_rules() |
pascal@63 | 34 { |
Hans-G?nter@21834 | 35 mkdir -p $fs/usr/bin |
Hans-G?nter@21834 | 36 mkdir -p $fs/usr/share/rdesktop/keymaps |
Hans-G?nter@21834 | 37 |
pascal@14999 | 38 cp -a $install/usr/bin/rdesktop $fs/usr/bin |
Hans-G?nter@21834 | 39 for i in common de en es fr it ja modifiers |
Hans-G?nter@21834 | 40 do |
pascal@14999 | 41 cp -a $install/usr/share/rdesktop/keymaps/$i* \ |
pascal@63 | 42 $fs/usr/share/rdesktop/keymaps |
Hans-G?nter@21834 | 43 done |
pascal@63 | 44 } |