wok view xorg-xdpyinfo/receipt @ rev 10891

grub4dos: add slitaz in default menu
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Jul 06 11:03:44 2011 +0200 (2011-07-06)
parents 07ae722ec64e
children eb8067417980
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xdpyinfo"
4 VERSION="1.2.0"
5 CATEGORY="x-window"
6 SHORT_DESC="display information utility for X-server"
7 MAINTAINER="jozee@slitaz.org"
8 SOURCE="xdpyinfo"
9 TARBALL="$SOURCE-$VERSION.tar.bz2"
10 DEPENDS="xorg-libXtst xorg-libXxf86vm xorg-libXrender \
11 xorg-libXinerama xorg-libXp"
12 BUILD_DEPENDS="xorg-libXtst-dev xorg-libXxf86vm-dev \
13 xorg-libXrender-dev xorg-libXinerama-dev xorg-libXp-dev"
14 WEB_SITE="http://xorg.freedesktop.org/"
15 WGET_URL="$WEB_SITE/releases/individual/app/$TARBALL"
16 TAGS="utility xorg display"
18 # Rules to configure and make the package.ls sr
19 compile_rules()
20 {
21 cd $src
22 ./configure \
23 --prefix=/usr \
24 --mandir=/usr/share/man \
25 $CONFIGURE_ARGS &&
26 make &&
27 make DESTDIR=$PWD/_pkg install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr
34 cp -a $_pkg/usr/bin $fs/usr
36 }