wok view speex/receipt @ rev 8954

Fix links. It only needed xorg-libXt-dev not xorg-dev.
author Christopher Rogers <slaxemulator@gmail.com>
date Tue Mar 01 17:48:58 2011 +0000 (2011-03-01)
parents a59ebb0d6909
children 0f1c57a860ef
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 DEPENDS="libogg"
10 WEB_SITE="http://www.speex.org/"
11 WGET_URL="http://downloads.us.xiph.org/releases/$PACKAGE/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure --prefix=/usr --infodir=/usr/share/info \
18 --mandir=/usr/share/man $CONFIGURE_ARGS &&
19 make &&
20 make -j1 DESTDIR=$PWD/_pkg 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 }