wok diff spandsp/receipt @ rev 8992
dahdi-linux: kernel 2.6.37 fix (again)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Mar 03 11:39:09 2011 +0100 (2011-03-03) |
parents | 8cb683a4d713 |
children | 640ddbff13b4 |
line diff
1.1 --- a/spandsp/receipt Tue May 26 10:54:55 2009 +0200 1.2 +++ b/spandsp/receipt Thu Mar 03 11:39:09 2011 +0100 1.3 @@ -1,31 +1,32 @@ 1.4 # SliTaz package receipt. 1.5 1.6 -PACKAGE="spandsp" 1.7 -VERSION="0.0.5" 1.8 -CATEGORY="system-tools" 1.9 -SHORT_DESC="library of DSP functions for telephony." 1.10 +PACKAGE="remmina" 1.11 +VERSION="0.9.3" 1.12 +CATEGORY="network" 1.13 +SHORT_DESC="Remote desktop client written in GTK+" 1.14 MAINTAINER="pascal.bellard@slitaz.org" 1.15 -TARBALL="$PACKAGE-$VERSION.tgz" 1.16 -WEB_SITE="http://www.soft-switch.org/" 1.17 -WGET_URL="${WEB_SITE}downloads/$PACKAGE/$TARBALL" 1.18 -DEPENDS="tiff zlib jpeg" 1.19 -BUILD_DEPENDS="tiff-dev zlib-dev jpeg-dev" 1.20 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.21 +WEB_SITE="http://$PACKAGE.sourceforge.net/" 1.22 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 1.23 +DEPENDS="gtk+" 1.24 +BUILD_DEPENDS="gtk+-dev intltool" 1.25 +SUGGESTED="remmina-plugins" 1.26 +TAGS="rdp vnc" 1.27 1.28 # Rules to configure and make the package. 1.29 compile_rules() 1.30 { 1.31 - [ -e $src ] || ln -s ${PACKAGE}-* $src 1.32 cd $src 1.33 - ./configure --prefix=/usr --infodir=/usr/share/info \ 1.34 - --mandir=/usr/share/man $CONFIGURE_ARGS 1.35 - make 1.36 + ./configure --prefix=/usr \ 1.37 + $CONFIGURE_ARGS && 1.38 + make && 1.39 make DESTDIR=$PWD/_pkg install 1.40 } 1.41 1.42 # Rules to gen a SliTaz package suitable for Tazpkg. 1.43 genpkg_rules() 1.44 { 1.45 - mkdir -p $fs/usr/lib 1.46 - cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 1.47 + mkdir -p $fs/usr 1.48 + cp -a $_pkg/usr/share $fs/usr 1.49 + cp -a $_pkg/usr/bin $fs/usr 1.50 } 1.51 -