wok view libopusenc/receipt @ rev 20703

Up clamtk (4.37)
author Richard Dunbar <mojo@slitaz.org>
date Tue Feb 05 14:03:17 2019 -0500 (2019-02-05)
parents
children 56ee356284c6
line source
1 # SliTaz package receipt.
3 PACKAGE="libopusenc"
4 VERSION="0.2.1"
5 CATEGORY="multimedia"
6 SHORT_DESC="High-level Opus encoding library"
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://archive.mozilla.org/pub/opus/$TARBALL"
13 DEPENDS="opus"
14 BUILD_DEPENDS="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 }