wok view opus/receipt @ rev 17341

slitaz-configs-base: Up (5.5.7); mesa-dri: remove vmwgfx
author Xander Ziiryanoff <psychomaniak@xakep.ru>
date Wed Nov 05 23:50:10 2014 +0100 (2014-11-05)
parents 23c3aed67cd9
children 9f18a592b782
line source
1 # SliTaz package receipt.
3 PACKAGE="opus"
4 VERSION="1.1"
5 CATEGORY="multimedia"
6 SHORT_DESC="Totally open, royalty-free, highly versatile audio codec."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="BSD"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://opus-codec.org/"
11 WGET_URL="http://downloads.xiph.org/releases/$PACKAGE/$TARBALL"
13 DEPENDS=""
14 BUILD_DEPENDS=""
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --prefix=/usr \
21 --enable-float-approx --enable-fuzzing \
22 $CONFIGURE_ARGS && \
23 make && make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $install/usr/lib/*a $fs/usr/lib
31 cp -a $install/usr/lib/pkgconfig $fs/usr/lib
32 cp -a $install/usr/include $fs/usr
33 cp -a $install/usr/share $fs/usr
34 }