wok view xorg-xf86-video-vmware/receipt @ rev 11653

Up apache (2.2.22, security fixes)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Feb 11 10:02:20 2012 +0100 (2012-02-11)
parents 5dbf4519c403
children 6971e86f8875
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xf86-video-vmware"
4 VERSION="11.0.3"
5 CATEGORY="x-window"
6 SHORT_DESC="X.org vmware video driver"
7 MAINTAINER="slaxemulator@gmail.com"
8 DEPENDS="xorg-server libdrm"
9 BUILD_DEPENDS="xorg-server-dev libdrm-dev"
10 SOURCE="xf86-video-vmware"
11 TARBALL="$SOURCE-$VERSION.tar.bz2"
12 WEB_SITE="http://www.x.org/"
13 WGET_URL="$XORG_MIRROR/driver/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --sysconfdir=/etc \
22 --mandir=/usr/share/man \
23 --localstatedir=/var \
24 --with-xorg-module-dir=/usr/lib/X11/modules \
25 $CONFIGURE_ARGS &&
26 make && make DESTDIR=$PWD/_pkg install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib/X11/modules/drivers/
33 cp -a $_pkg/usr/lib/X11/modules/drivers/*.so \
34 $fs/usr/lib/X11/modules/drivers/
35 }