wok view remmina/receipt @ rev 11700

Up: slitaz-doc (4.2.1)
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Sun Feb 19 12:09:24 2012 +0100 (2012-02-19)
parents 3a697a12f7c0
children 1da60acba2d5
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 ./configure --prefix=/usr \
21 $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $_pkg/usr/share $fs/usr
31 cp -a $_pkg/usr/bin $fs/usr
32 }