wok annotate remmina/receipt @ rev 10315

edje: Add $CONFIGURE_ARGS.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat May 21 23:52:04 2011 +0000 (2011-05-21)
parents 3a697a12f7c0
children 1da60acba2d5
rev   line source
pascal@8257 1 # SliTaz package receipt.
pascal@8257 2
pascal@8257 3 PACKAGE="remmina"
pascal@8257 4 VERSION="0.9.3"
pascal@8257 5 CATEGORY="network"
pascal@8257 6 SHORT_DESC="Remote desktop client written in GTK+"
pascal@8257 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@8257 8 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@8257 9 WEB_SITE="http://$PACKAGE.sourceforge.net/"
pascal@8257 10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pascal@8257 11 DEPENDS="gtk+"
gokhlayeh@8687 12 BUILD_DEPENDS="gtk+-dev intltool"
pascal@8257 13 SUGGESTED="remmina-plugins"
pascal@8257 14 TAGS="rdp vnc"
pascal@8257 15
pascal@8257 16 # Rules to configure and make the package.
pascal@8257 17 compile_rules()
pascal@8257 18 {
pascal@8257 19 cd $src
pascal@8257 20 ./configure --prefix=/usr \
pascal@8257 21 $CONFIGURE_ARGS &&
pascal@8257 22 make &&
pascal@8257 23 make DESTDIR=$PWD/_pkg install
pascal@8257 24 }
pascal@8257 25
pascal@8257 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@8257 27 genpkg_rules()
pascal@8257 28 {
pascal@8257 29 mkdir -p $fs/usr
pascal@8257 30 cp -a $_pkg/usr/share $fs/usr
pascal@8257 31 cp -a $_pkg/usr/bin $fs/usr
pascal@8257 32 }