wok view xorg-libXvMC/receipt @ rev 2791

slitaz-boot-scripts: Remove old desktop file
author Christophe Lincoln <pankso@slitaz.org>
date Tue Apr 28 02:19:36 2009 +0200 (2009-04-28)
parents 71393a5eff0a
children 55fede281d6c
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-libXvMC"
4 VERSION="1.0.4"
5 CATEGORY="x-window"
6 SHORT_DESC="Xorg server module."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="xorg xorg-libXv"
9 BUILD_DEPENDS="xorg-libXv-dev"
10 SOURCE="libXvMC"
11 TARBALL="$SOURCE-$VERSION.tar.gz"
12 WEB_SITE="http://www.x.org/"
13 WGET_URL="$XORG_MIRROR/lib/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr --sysconfdir=/etc \
20 --mandir=/usr/share/man --localstatedir=/var \
21 $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
31 }