wok annotate spandsp/receipt @ rev 8833

Fix: tazdev receipt
author Christophe Lincoln <pankso@slitaz.org>
date Thu Feb 24 16:18:46 2011 +0100 (2011-02-24)
parents 8cb683a4d713
children 640ddbff13b4
rev   line source
pascal@1178 1 # SliTaz package receipt.
pascal@1178 2
gokhlayeh@8688 3 PACKAGE="remmina"
gokhlayeh@8688 4 VERSION="0.9.3"
gokhlayeh@8688 5 CATEGORY="network"
gokhlayeh@8688 6 SHORT_DESC="Remote desktop client written in GTK+"
pascal@1178 7 MAINTAINER="pascal.bellard@slitaz.org"
gokhlayeh@8688 8 TARBALL="$PACKAGE-$VERSION.tar.gz"
gokhlayeh@8688 9 WEB_SITE="http://$PACKAGE.sourceforge.net/"
gokhlayeh@8688 10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
gokhlayeh@8688 11 DEPENDS="gtk+"
gokhlayeh@8688 12 BUILD_DEPENDS="gtk+-dev intltool"
gokhlayeh@8688 13 SUGGESTED="remmina-plugins"
gokhlayeh@8688 14 TAGS="rdp vnc"
pascal@1178 15
pascal@1178 16 # Rules to configure and make the package.
pascal@1178 17 compile_rules()
pascal@1178 18 {
pascal@1178 19 cd $src
gokhlayeh@8688 20 ./configure --prefix=/usr \
gokhlayeh@8688 21 $CONFIGURE_ARGS &&
gokhlayeh@8688 22 make &&
pascal@1178 23 make DESTDIR=$PWD/_pkg install
pascal@1178 24 }
pascal@1178 25
pascal@1178 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1178 27 genpkg_rules()
pascal@1178 28 {
gokhlayeh@8688 29 mkdir -p $fs/usr
gokhlayeh@8688 30 cp -a $_pkg/usr/share $fs/usr
gokhlayeh@8688 31 cp -a $_pkg/usr/bin $fs/usr
pascal@1178 32 }