wok view xorg-xf86-video-neomagic/receipt @ rev 14463

Up: ndoutils (1.5.2)
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Sat Apr 27 03:10:35 2013 +0200 (2013-04-27)
parents 6971e86f8875
children 5f4f33f36a0f
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xf86-video-neomagic"
4 VERSION="1.2.6"
5 CATEGORY="x-window"
6 SHORT_DESC="Xorg driver for neomagic cards"
7 MAINTAINER="domcox@slitaz.org"
8 SOURCE="xf86-video-neomagic"
9 TARBALL="$SOURCE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.x.org"
11 WGET_URL="$XORG_MIRROR/driver/$TARBALL"
12 TAGS="xorg display"
14 DEPENDS="xorg-server"
15 BUILD_DEPENDS="xorg-server-dev xorg-xf86dgaproto"
17 MODS='/usr/lib/X11/modules'
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 cd $src
23 ./configure \
24 --sysconfdir=/etc \
25 --mandir=/usr/share/man \
26 --localstatedir=/var \
27 --with-xorg-module-dir=$MODS \
28 $CONFIGURE_ARGS &&
29 make && make install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p ${fs}${MODS}/drivers
36 cp -a ${install}${MODS}/drivers/*.so ${fs}${MODS}/drivers
37 }