wok view xorg-xdriinfo/receipt @ rev 4115

Fix: xorg-libSM receipt (BUILD_DEPENDS)
author Christophe Lincoln <pankso@slitaz.org>
date Sat Sep 19 22:45:29 2009 +0200 (2009-09-19)
parents
children 413b0174114a
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xdriinfo"
4 SOURCE="xdriinfo"
5 VERSION="1.0.2"
6 CATEGORY="x-window"
7 SHORT_DESC="Query configuration information of DRI drivers"
8 MAINTAINER="pankso@slitaz.org"
9 DEPENDS="xorg-libX11"
10 TARBALL="$SOURCE-$VERSION.tar.gz"
11 WEB_SITE="http://www.x.org/"
12 WGET_URL="http://xorg.mirror.solnet.ch/pub/individual/app/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr \
19 --mandir=/usr/share/man $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $_pkg/usr/bin $fs/usr
29 }