wok-next annotate tsclient/receipt @ rev 20367

pywebkitgtk: up and use webkitgtk; claws-mail-dev: update dependencies.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Nov 24 15:34:52 2017 +0200 (2017-11-24)
parents 600aaedb561d
children d43bf7aae921
rev   line source
pankso@166 1 # SliTaz package receipt.
pankso@166 2
pankso@166 3 PACKAGE="tsclient"
pankso@166 4 VERSION="0.150"
pankso@203 5 CATEGORY="network"
pankso@166 6 SHORT_DESC="GTK frontend to rdesktop and other remote desktop tools."
pankso@166 7 MAINTAINER="pankso@slitaz.org"
pascal@15590 8 LICENSE="GPL2"
pankso@166 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@166 10 WEB_SITE="http://sourceforge.net/projects/tsclient/"
pankso@166 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
jozee@4973 12 TAGS="remote-desktop"
pankso@166 13
pascal@15590 14 DEPENDS="gtk+ rdesktop xorg-libXdamage"
pascal@20003 15 BUILD_DEPENDS="gtk+ gtk+-dev perl-xml-parser pkg-config gettext-tools"
pascal@15590 16
pankso@166 17 # Rules to configure and make the package.
pankso@166 18 compile_rules()
pankso@166 19 {
pankso@166 20 ./configure \
pankso@166 21 --prefix=/usr \
pankso@166 22 --libexecdir=/usr/lib/$PACKAGE \
pankso@166 23 --mandir=/usr/share/man \
pankso@166 24 --disable-gnome \
pascal@1465 25 $CONFIGURE_ARGS &&
pascal@1465 26 make &&
pascal@15590 27 make DESTDIR=$DESTDIR install
pankso@166 28 }
pankso@166 29
pankso@166 30 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@166 31 genpkg_rules()
pankso@166 32 {
pankso@166 33 mkdir -p $fs/usr/share/locale $fs/usr/lib
pascal@15590 34 cp -a $install/usr/bin $fs/usr
pascal@15590 35 cp -a $install/usr/lib/$PACKAGE $fs/usr/lib
pascal@15590 36 cp -a $install/usr/share/locale/fr $fs/usr/share/locale
pascal@15590 37 cp -a $install/usr/share/pixmaps $fs/usr/share
pascal@15590 38 cp -a $install/usr/share/applications $fs/usr/share
pankso@166 39 strip -s $fs/usr/lib/$PACKAGE/*
pankso@166 40 }