wok view libtheora/receipt @ rev 19224

Add bsc
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jun 21 15:47:21 2016 +0200 (2016-06-21)
parents 8d6f480bf664
children a78610b2eb47
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="http://www.theora.org/"
11 WGET_URL="http://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 }