wok view speex/receipt @ rev 19116

htop: typo
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 07 16:46:59 2016 +0200 (2016-05-07)
parents 3b4e4318134e
children a78610b2eb47
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 LICENSE="BSD"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.speex.org/"
11 WGET_URL="http://downloads.us.xiph.org/releases/$PACKAGE/$TARBALL"
12 HOST_ARCH="i486 arm"
14 DEPENDS="libogg"
15 BUILD_DEPENDS="libogg-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure $CONFIGURE_ARGS &&
22 make && make -j1 install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $install/usr/bin $fs/usr
30 cp -a $install/usr/lib/*.so* $fs/usr/lib
31 }