wok-next view libplayer/receipt @ rev 4765

Add: libplayer (multimedia A/V abstraction layer API)
author Christophe Lincoln <pankso@slitaz.org>
date Sun Jan 10 23:10:04 2010 +0100 (2010-01-10)
parents
children 568a128936bf
line source
1 # SliTaz package receipt.
3 PACKAGE="libplayer"
4 VERSION="1.0.0"
5 CATEGORY="multimrdia"
6 SHORT_DESC="A multimedia A/V abstraction layer API."
7 DEPENDS="xine-lib"
8 BUILD_DEPENDS="xine-lib-dev"
9 MAINTAINER="pankso@slitaz.org"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://libplayer.geexbox.org/"
12 WGET_URL="http://libplayer.geexbox.org/releases/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --enable-binding-python \
21 --enable-mplayer \
22 --disable-gstreamer \
23 --disable-vlc &&
24 make && make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
32 cp -a $_pkg/usr/bin $fs/usr
33 }