wok view rdesktop/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 1c4a5b100a45
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="rdesktop"
4 VERSION="1.9.0"
5 CATEGORY="network"
6 TAGS="rdp remote-desktop"
7 SHORT_DESC="Remote Desktop Protocol (RDP) client for Windows terminal server."
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="GPL3"
10 WEB_SITE="https://www.rdesktop.org/"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="https://github.com/$PACKAGE/$PACKAGE/archive/v$VERSION.tar.gz"
15 DEPENDS="alsa-lib glibc-base libgnutls libao libcrypto libsamplerate libtasn1
16 nettle pcsc-lite xorg-libX11 xorg-libXau xorg-libXdmcp"
17 BUILD_DEPENDS="autoconf automake gnutls-dev libgnutls libtasn1-dev nettle-dev
18 openssl-dev pcsc-lite-dev xorg-dev"
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 ./bootstrap &&
24 ./configure \
25 --prefix=/usr \
26 --mandir=/usr/share/man \
27 --disable-credssp \
28 $CONFIGURE_ARGS &&
29 make &&
30 make DESTDIR=$DESTDIR install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir -p $fs/usr/bin
37 mkdir -p $fs/usr/share/rdesktop/keymaps
39 cp -a $install/usr/bin/rdesktop $fs/usr/bin
40 for i in common de en es fr it ja modifiers
41 do
42 cp -a $install/usr/share/rdesktop/keymaps/$i* \
43 $fs/usr/share/rdesktop/keymaps
44 done
45 }