wok-current view rdpdesk/receipt @ rev 21799
Fix chromaprint & guvcview
| author | Pascal Bellard <pascal.bellard@slitaz.org> | 
|---|---|
| date | Sat Aug 10 13:12:53 2019 +0200 (2019-08-10) | 
| parents | affba9aecc73 | 
| children | e919c5a2742d | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="rdpdesk"
     4 VERSION="3.2"
     5 CATEGORY="network"
     6 SHORT_DESC="RDP, VNC & ICA client."
     7 MAINTAINER="pascal.bellard@slitaz.org"
     8 LICENSE="GPL3"
     9 TARBALL="$PACKAGE-$VERSION.tar.gz"
    10 WEB_SITE="https://web.archive.org/web/20120603061746/http://rdpdesk.com/"
    11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    13 DEPENDS="wxWidgets28 xorg-libXp xorg-libXaw libssl"
    14 BUILD_DEPENDS="wxWidgets28-dev xorg-imake jpeg-dev zlib-dev \
    15 openssl-dev xorg-libXp autoconf"
    16 SUGGESTED="wfica rdesktop"
    18 # Rules to configure and make the package.
    19 compile_rules()
    20 {
    21 	# Binutils 2.22 break many packages build without LDFLAGS set correctly.
    22 	export LDFLAGS="$LDFLAGS -Wl,--copy-dt-needed-entries"
    24 	cd $src
    25 	sed -i 's|glib/.*h|glib.h|' src/proto/*Connection_nix.hpp
    26 	./configure --prefix=/usr $CONFIGURE_ARGS &&
    27 	make &&
    28 	make DESTDIR=$DESTDIR install
    29 }
    31 # Rules to gen a SliTaz package suitable for Tazpkg.
    32 genpkg_rules()
    33 {
    34 	cp -a $install/usr $fs
    35 }