wok view remmina-plugins/receipt @ rev 8709

add; libsvn
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Fri Feb 18 00:01:51 2011 +0100 (2011-02-18)
parents
children ac272d00f214
line source
1 # SliTaz package receipt.
3 PACKAGE="remmina-plugins"
4 VERSION="0.9.2"
5 CATEGORY="network"
6 SHORT_DESC="RDP, VNC, NX, XDMCP and SSH support for remmina"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://remmina.sourceforge.net/"
10 WGET_URL="$SF_MIRROR/remmina/$TARBALL"
11 DEPENDS="remmina"
12 BUILD_DEPENDS="remmina-dev gtk+-dev"
13 TAGS="rdp vnc"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr \
20 $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib/remmina/plugins
29 cp -a $_pkg/usr/share $fs/usr
30 cp -a $_pkg/usr/lib/remmina/plugins/*.so* $fs/usr/lib/remmina/plugins
31 }