wok view libvpx/receipt @ rev 21094

updated ladspa and ladspa-dev (1.13 -> 1.15)
author Hans-G?nter Theisgen
date Sat Mar 16 16:48:49 2019 +0100 (2019-03-16)
parents bbf6553c03a2
children c68322a2f2f3
line source
1 # SliTaz package receipt.
3 PACKAGE="libvpx"
4 VERSION="1.3.0"
5 CATEGORY="multimedia"
6 SHORT_DESC="The VP8 Codec SDK"
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="BSD"
9 WEB_SITE="https://www.webmproject.org/"
10 TARBALL="$PACKAGE-v$VERSION.tar.bz2"
11 WGET_URL="http://webm.googlecode.com/files/$TARBALL"
13 DEPENDS="glibc-base"
14 BUILD_DEPENDS="yasm coreutils-file-format"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure \
20 --enable-vp8 \
21 --enable-runtime-cpu-detect \
22 --enable-postproc \
23 --enable-shared \
24 --enable-pic \
25 --disable-install-docs \
26 --disable-install-srcs &&
27 make && make DIST_DIR=$DESTDIR/usr install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib
34 cp -a $install/usr/bin $fs/usr
35 cp -a $install/usr/lib/*.so* $fs/usr/lib
36 }