wok view xorg-xdriinfo/receipt @ rev 13796

mesa-dev: update deps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Jan 05 14:44:51 2013 +0100 (2013-01-05)
parents c514cc4854d8
children eb8067417980
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xdriinfo"
4 SOURCE="xdriinfo"
5 VERSION="1.0.4"
6 CATEGORY="x-window"
7 SHORT_DESC="Query configuration information of DRI drivers"
8 MAINTAINER="pankso@slitaz.org"
9 TARBALL="$SOURCE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.x.org/"
11 WGET_URL="http://xorg.mirror.solnet.ch/pub/individual/app/$TARBALL"
12 SUGGESTED="nvidia"
14 DEPENDS="xorg-libX11 mesa"
15 BUILD_DEPENDS="xorg-libX11-dev mesa-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure --prefix=/usr \
22 --mandir=/usr/share/man $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $install/usr/bin $fs/usr
32 }