rev |
line source |
pascal@11227
|
1 # SliTaz package receipt.
|
pascal@11227
|
2
|
pascal@11227
|
3 PACKAGE="rdpdesk"
|
pascal@11227
|
4 VERSION="3.2"
|
pascal@11227
|
5 CATEGORY="network"
|
pascal@11227
|
6 SHORT_DESC="RDP, VNC & ICA client."
|
pascal@11227
|
7 MAINTAINER="pascal.bellard@slitaz.org"
|
pascal@15601
|
8 LICENSE="GPL3"
|
pascal@11227
|
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
|
pascal@11227
|
10 WEB_SITE="http://rdpdesk.com/"
|
pascal@11227
|
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
|
pascal@11227
|
12
|
pascal@11227
|
13 DEPENDS="wxWidgets xorg-libXp xorg-libXaw libssl"
|
pascal@11227
|
14 BUILD_DEPENDS="wxWidgets-dev xorg-imake jpeg-dev zlib-dev \
|
pascal@15616
|
15 openssl-dev xorg-libXp autoconf"
|
pascal@11227
|
16 SUGGESTED="wfica rdesktop"
|
pascal@11227
|
17
|
pascal@11227
|
18 # Rules to configure and make the package.
|
pascal@11227
|
19 compile_rules()
|
pascal@11227
|
20 {
|
pascal@12668
|
21 # Binutils 2.22 break many packages build without LDFLAGS set correctly.
|
pascal@12668
|
22 export LDFLAGS="-Wl,--copy-dt-needed-entries"
|
pascal@12668
|
23
|
pascal@11227
|
24 cd $src
|
pascal@12668
|
25 sed -i 's|glib/.*h|glib.h|' src/proto/*Connection_nix.hpp
|
pascal@11227
|
26 ./configure --prefix=/usr $CONFIGURE_ARGS &&
|
pascal@11227
|
27 make &&
|
pascal@11227
|
28 make DESTDIR=$DESTDIR install
|
pascal@11227
|
29 }
|
pascal@11227
|
30
|
pascal@11227
|
31 # Rules to gen a SliTaz package suitable for Tazpkg.
|
pascal@11227
|
32 genpkg_rules()
|
pascal@11227
|
33 {
|
pascal@15601
|
34 cp -a $install/usr $fs
|
pascal@11227
|
35 }
|