wok view speex/receipt @ rev 2214

Add menu-cache (will be used by next lxpanel release)
author Christophe Lincoln <pankso@slitaz.org>
date Wed Feb 11 17:45:18 2009 +0100 (2009-02-11)
parents
children 8c4a70e18847
line source
1 # SliTaz package receipt.
3 PACKAGE="speex"
4 VERSION="1.0.5"
5 CATEGORY="multimedia"
6 SHORT_DESC="Low bandwith voice codec."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.speex.org/"
10 WGET_URL="http://downloads.us.xiph.org/releases/$PACKAGE/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 ./configure --prefix=/usr --infodir=/usr/share/info \
17 --mandir=/usr/share/man $CONFIGURE_ARGS
18 make
19 make DESTDIR=$PWD/_pkg install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/lib
26 cp -a $_pkg/usr/bin $fs/usr
27 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
28 # cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib
29 }