wok-next view libtheora/receipt @ rev 21469

updated tinc (1.0.25 -> 1.0.36)
author Hans-G?nter Theisgen
date Wed May 13 07:41:00 2020 +0100 (2020-05-13)
parents 5669e8b3be70
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="libtheora"
4 VERSION="1.1.1"
5 CATEGORY="multimedia"
6 SHORT_DESC="Theora video compression format"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="BSD"
9 WEB_SITE="https://www.theora.org/"
10 LFS="http://www.linuxfromscratch.org/blfs/view/svn/multimedia/libtheora.html"
12 TARBALL="$PACKAGE-$VERSION.tar.xz"
13 WGET_URL="http://downloads.xiph.org/releases/theora/$TARBALL"
14 TARBALL_SHA1="800aa48cf9e59d546c18ecdac1d06d7643cbb2d3"
16 BUILD_DEPENDS="libogg-dev libvorbis-dev libpng-dev"
17 SPLIT="$PACKAGE-enc $PACKAGE-dev"
19 COPY_std="libtheora.so.*"
20 COPY_enc="libtheoradec.so.* libtheoraenc.so.*"
21 COPY_dev="@dev *.so"
23 CAT_enc="multimedia|encoding/decoding library"
25 DEPENDS_std="libogg"
26 DEPENDS_enc="libogg"
27 DEPENDS_dev="$PACKAGE $PACKAGE-enc libogg-dev"
29 TAGS_std="Xiph.org"
31 compile_rules() {
32 sed -i 's/png_\(sizeof\)/\1/g' examples/png2theora.c
34 ./configure \
35 --disable-static \
36 $CONFIGURE_ARGS &&
37 fix libtool &&
38 make &&
39 make install
40 }