wok view libtheora/receipt @ rev 21615

Up opencv (3.4.6)
author maniac
date Thu May 23 22:07:21 2019 +0300 (2019-05-23)
parents a78610b2eb47
children 544e47246b33
line source
1 # SliTaz package receipt.
3 PACKAGE="libtheora"
4 VERSION="1.1.1"
5 CATEGORY="multimedia"
6 SHORT_DESC="Theora video codec and tools."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="BSD"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="https://www.theora.org/"
11 WGET_URL="https://downloads.xiph.org/releases/theora/$TARBALL"
12 HOST_ARCH="i486 arm"
14 DEPENDS="libogg libvorbis"
15 BUILD_DEPENDS="libogg-dev libvorbis-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure \
22 --prefix=/usr \
23 --mandir=/usr/share/man \
24 $CONFIGURE_ARGS
25 make
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
33 cp -a $install/usr/lib/libtheora.so* $fs/usr/lib
34 }