wok view xorg-xf86-video-fbdev/receipt @ rev 15295

cdrtools: remove a wrong error trigger
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Sep 27 09:56:20 2013 +0000 (2013-09-27)
parents d86d7ecd35b3
children eb8067417980
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xf86-video-fbdev"
4 VERSION="0.4.3"
5 CATEGORY="x-window"
6 SHORT_DESC="Xorg video driver for framebuffer device."
7 MAINTAINER="pankso@slitaz.org"
8 SOURCE="xf86-video-fbdev"
9 TARBALL="$SOURCE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.x.org/"
11 WGET_URL="$XORG_MIRROR/driver/$TARBALL"
13 # We can use xorg-server-light with evdev and vesa driver.
14 #DEPENDS="xorg-server"
15 BUILD_DEPENDS="xorg-server-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure \
22 --prefix=/usr \
23 --sysconfdir=/etc \
24 --localstatedir=/var \
25 --with-xorg-module-dir=/usr/lib/X11/modules \
26 $CONFIGURE_ARGS &&
27 make && make install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib/X11/modules/drivers/
34 cp -a $install/usr/lib/X11/modules/drivers/*.so \
35 $fs/usr/lib/X11/modules/drivers/
36 }