wok view xorg-xdriinfo/receipt @ rev 9030

Fixed cyrus-sasl-pam.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Mar 03 16:29:06 2011 +0000 (2011-03-03)
parents bff2fd2daf51
children 6b09507225ec
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 DEPENDS="xorg-libX11 mesa"
10 BUILD_DEPENDS="xorg-libX11-dev mesa-dev"
11 SUGGESTED="nvidia"
12 TARBALL="$SOURCE-$VERSION.tar.bz2"
13 WEB_SITE="http://www.x.org/"
14 WGET_URL="http://xorg.mirror.solnet.ch/pub/individual/app/$TARBALL"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --prefix=/usr \
21 --mandir=/usr/share/man $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $_pkg/usr/bin $fs/usr
31 }