wok view xine-lib/receipt @ rev 2581

openssl: basename bug workaround (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Apr 07 12:51:52 2009 +0000 (2009-04-07)
parents edff6143952d
children f9b8e9e02818
line source
1 # SliTaz package receipt.
3 PACKAGE="xine-lib"
4 VERSION="1.1.16.1"
5 CATEGORY="multimedia"
6 SHORT_DESC="Xine video library."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="xorg zlib xorg-libXv xorg-libXvMC alsa-lib glib gtk+ libSDL libgio \
9 libiconv libogg libvorbis"
10 BUILD_DEPENDS="xorg-dev zlib-dev xorg-libXvMC-dev xorg-libXv-dev libtheora"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WEB_SITE="http://www.xinehq.de/"
13 WGET_URL="http://switch.dl.sourceforge.net/sourceforge/xine/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib $fs/usr/share/locale
32 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
33 cp -a $_pkg/usr/lib/xine $fs/usr/lib
35 # Fonts.
36 cp -a $_pkg/usr/share/xine $fs/usr/share
37 }