wok view libtheora/receipt @ rev 22821

updated geos and geos-dev (3.5.0 -> 3.8.0)
author Hans-G?nter Theisgen
date Thu Feb 06 11:31:14 2020 +0100 (2020-02-06)
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 }