wok view remmina/receipt @ rev 13610

Up remmina (1.0.0)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Nov 12 17:45:50 2012 +0100 (2012-11-12)
parents 1da60acba2d5
children c35a1c9525d9
line source
1 # SliTaz package receipt.
3 PACKAGE="remmina"
4 VERSION="1.0.0"
5 CATEGORY="network"
6 SHORT_DESC="Remote desktop client written in GTK+"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://$PACKAGE.sourceforge.net/"
10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
11 SUGGESTED="remmina-plugins"
12 TAGS="rdp vnc"
14 DEPENDS="gtk+"
15 BUILD_DEPENDS="gtk+-dev intltool"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 export LDFLAGS="-Wl,--copy-dt-needed-entries -lX11"
22 ./configure --prefix=/usr \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
32 cp -a $install/usr/share $fs/usr
33 cp -a $install/usr/bin $fs/usr
34 }