wok view tsclient/receipt @ rev 7967

Fix: libwebkit needs -j1 to compile well
author Antoine Bodin <gokhlayeh@slitaz.org>
date Mon Jan 17 17:39:27 2011 +0100 (2011-01-17)
parents f222ed5813c1
children 02bbaa9d12ba
line source
1 # SliTaz package receipt.
3 PACKAGE="tsclient"
4 VERSION="0.150"
5 CATEGORY="network"
6 SHORT_DESC="GTK frontend to rdesktop and other remote desktop tools."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="gtk+ rdesktop xorg-libXdamage"
9 BUILD_DEPENDS="gtk+ gtk+-dev perl-xml-parser pkg-config"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://sourceforge.net/projects/tsclient/"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 TAGS="remote-desktop"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --libexecdir=/usr/lib/$PACKAGE \
22 --mandir=/usr/share/man \
23 --disable-gnome \
24 $CONFIGURE_ARGS &&
25 make &&
26 make DESTDIR=$PWD/_pkg install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/share/locale $fs/usr/lib
33 cp -a $_pkg/usr/bin $fs/usr
34 cp -a $_pkg/usr/lib/$PACKAGE $fs/usr/lib
35 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
36 cp -a $_pkg/usr/share/pixmaps $fs/usr/share
37 cp -a $_pkg/usr/share/applications $fs/usr/share
38 strip -s $fs/usr/bin/*
39 strip -s $fs/usr/lib/$PACKAGE/*
40 }