wok view rdpdesk/receipt @ rev 23848

inkscape: update build_depends
author Richard Dunbar <mojo@slitaz.org>
date Sun Jun 14 23:18:03 2020 -0400 (2020-06-14)
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 }