# HG changeset patch # User Pascal Bellard # Date 1217713172 0 # Node ID e1b5def76752b9b97eb62969b2937b67ecf84b5e # Parent 3b80d83904fb7acaa0434e7658e8e76424ef6d3d Add speex codec diff -r 3b80d83904fb -r e1b5def76752 speex-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/speex-dev/receipt Sat Aug 02 21:39:32 2008 +0000 @@ -0,0 +1,18 @@ +# SliTaz package receipt. + +PACKAGE="speex-dev" +VERSION="1.0.5" +CATEGORY="development" +SHORT_DESC="Low bandwith voice codec dev files." +MAINTAINER="pascal.bellard@slitaz.org" +WEB_SITE="http://www.speex.org/" +WANTED="speex" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib $fs/usr/share + cp -a $_pkg/usr/include $fs/usr + cp -a $_pkg/usr/lib/*a $fs/usr/lib + cp -a $_pkg/usr/share/aclocal $fs/usr/share +} diff -r 3b80d83904fb -r e1b5def76752 speex/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/speex/receipt Sat Aug 02 21:39:32 2008 +0000 @@ -0,0 +1,30 @@ +# SliTaz package receipt. + +PACKAGE="speex" +VERSION="1.0.5" +CATEGORY="multimedia" +SHORT_DESC="Low bandwith voice codec." +MAINTAINER="pascal.bellard@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://www.speex.org/" +WGET_URL="http://downloads.us.xiph.org/releases/$PACKAGE/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure --prefix=/usr --infodir=/usr/share/info \ + --mandir=/usr/share/man $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/bin $fs/usr + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib + # cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib +} +