# HG changeset patch # User Antoine Bodin # Date 1297965596 -3600 # Node ID dadf43e684cb0c44eda569a43737155733145649 # Parent e53846be169c389ff4a140556bf406cdf4018a55 Fix bdep: spandsp need intltool to compile diff -r e53846be169c -r dadf43e684cb spandsp/receipt --- a/spandsp/receipt Thu Feb 17 18:59:15 2011 +0100 +++ b/spandsp/receipt Thu Feb 17 18:59:56 2011 +0100 @@ -1,31 +1,32 @@ # SliTaz package receipt. -PACKAGE="spandsp" -VERSION="0.0.5" -CATEGORY="system-tools" -SHORT_DESC="library of DSP functions for telephony." +PACKAGE="remmina" +VERSION="0.9.3" +CATEGORY="network" +SHORT_DESC="Remote desktop client written in GTK+" MAINTAINER="pascal.bellard@slitaz.org" -TARBALL="$PACKAGE-$VERSION.tgz" -WEB_SITE="http://www.soft-switch.org/" -WGET_URL="${WEB_SITE}downloads/$PACKAGE/$TARBALL" -DEPENDS="tiff zlib jpeg" -BUILD_DEPENDS="tiff-dev zlib-dev jpeg-dev" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://$PACKAGE.sourceforge.net/" +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" +DEPENDS="gtk+" +BUILD_DEPENDS="gtk+-dev intltool" +SUGGESTED="remmina-plugins" +TAGS="rdp vnc" # Rules to configure and make the package. compile_rules() { - [ -e $src ] || ln -s ${PACKAGE}-* $src cd $src - ./configure --prefix=/usr --infodir=/usr/share/info \ - --mandir=/usr/share/man $CONFIGURE_ARGS - make + ./configure --prefix=/usr \ + $CONFIGURE_ARGS && + make && make DESTDIR=$PWD/_pkg install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib + mkdir -p $fs/usr + cp -a $_pkg/usr/share $fs/usr + cp -a $_pkg/usr/bin $fs/usr } -