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

Remove cromfs-or-squashfs; add some licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Nov 30 10:06:29 2013 +0000 (2013-11-30)
parents 5f4f33f36a0f
children 9be2dfe2fe72
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 LICENSE="MIT"
9 SOURCE="xf86-video-fbdev"
10 TARBALL="$SOURCE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.x.org/"
12 WGET_URL="$XORG_MIRROR/driver/$TARBALL"
14 # We can use xorg-server-light with evdev and vesa driver.
15 #DEPENDS="xorg-server"
16 BUILD_DEPENDS="xorg-server-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src
22 ./configure \
23 --prefix=/usr \
24 --sysconfdir=/etc \
25 --localstatedir=/var \
26 --with-xorg-module-dir=/usr/lib/X11/modules \
27 $CONFIGURE_ARGS &&
28 make && make install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/lib/X11/modules/drivers/
35 cp -a $install/usr/lib/X11/modules/drivers/*.so \
36 $fs/usr/lib/X11/modules/drivers/
37 }