wok view remmina/receipt @ rev 13476

Add: scrounge-ntfs
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Tue Oct 09 16:12:56 2012 +0200 (2012-10-09)
parents e53846be169c
children 45d76459585c
line source
1 # SliTaz package receipt.
3 PACKAGE="remmina"
4 VERSION="0.9.3"
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 DEPENDS="gtk+"
12 BUILD_DEPENDS="gtk+-dev intltool"
13 SUGGESTED="remmina-plugins"
14 TAGS="rdp vnc"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 export LDFLAGS="-Wl,--copy-dt-needed-entries -lX11"
21 ./configure --prefix=/usr \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $_pkg/usr/share $fs/usr
32 cp -a $_pkg/usr/bin $fs/usr
33 }