wok view speex/receipt @ rev 11275

Up: lxappearance (0.5.1)
author Alexander Medvedev <devl547@gmail.com>
date Thu Nov 10 03:10:17 2011 +0000 (2011-11-10)
parents e446ced86bd1
children 3b4e4318134e
line source
1 # SliTaz package receipt.
3 PACKAGE="speex"
4 VERSION="1.2rc1"
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 DEPENDS="libogg"
13 BUILD_DEPENDS="libogg-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure $CONFIGURE_ARGS &&
20 make && make -j1 install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib
27 cp -a $_pkg/usr/bin $fs/usr
28 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
29 }