wok annotate xine-lib/receipt @ rev 905

Linux: don't use rdev
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Jun 15 12:47:58 2008 +0000 (2008-06-15)
parents 20068c6f5109
children b1ded1ca9b3f
rev   line source
pankso@33 1 # SliTaz package receipt.
pankso@33 2
pankso@33 3 PACKAGE="xine-lib"
pankso@614 4 VERSION="1.1.12"
pankso@206 5 CATEGORY="multimedia"
pankso@33 6 SHORT_DESC="Xine video library."
pankso@33 7 MAINTAINER="pankso@slitaz.org"
pankso@33 8 DEPENDS="xorg"
pankso@33 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pankso@33 10 WEB_SITE="http://www.xinehq.de/"
pankso@33 11 WGET_URL="http://switch.dl.sourceforge.net/sourceforge/xine/$TARBALL"
pankso@33 12
pankso@33 13 # Rules to configure and make the package.
pankso@33 14 compile_rules()
pankso@33 15 {
pankso@33 16 cd $src
pankso@499 17 ./configure \
pankso@499 18 --prefix=/usr \
pankso@499 19 --infodir=/usr/share/info \
pankso@499 20 --mandir=/usr/share/man \
pankso@499 21 $CONFIGURE_ARGS
pankso@33 22 make
pankso@33 23 make DESTDIR=$PWD/_pkg install
pankso@33 24 }
pankso@33 25
pankso@33 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@33 27 genpkg_rules()
pankso@33 28 {
pankso@33 29 mkdir -p $fs/usr/lib $fs/usr/share/locale
pankso@33 30 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
pankso@33 31 cp -a $_pkg/usr/lib/xine $fs/usr/lib
pankso@33 32
pankso@499 33 # Fonts.
pankso@33 34 cp -a $_pkg/usr/share/xine $fs/usr/share
pankso@33 35 }
pankso@33 36