wok view opusfile/receipt @ rev 20975

updated glm (0.9.3.2 -> 0.9.9.3)
author Hans-G?nter Theisgen
date Tue Mar 05 16:53:19 2019 +0100 (2019-03-05)
parents
children 56ee356284c6
line source
1 # SliTaz package receipt.
3 PACKAGE="opusfile"
4 VERSION="0.11"
5 CATEGORY="multimedia"
6 SHORT_DESC="Opus streams in the Ogg container I/O"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://opus-codec.org/"
11 WGET_URL="https://downloads.xiph.org/releases/opus/$TARBALL"
13 DEPENDS="libssl libogg opus"
14 BUILD_DEPENDS="openssl-dev libogg libogg-dev opus-dev pkg-config"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure --prefix=/usr \
20 $CONFIGURE_ARGS && \
21 make && make DESTDIR=$DESTDIR install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $install/usr/lib/*.so* $fs/usr/lib
29 }