wok view xorg-xdpyinfo/receipt @ rev 5649

mirror-tools: add backup.sh
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 29 13:48:15 2010 +0200 (2010-05-29)
parents 413b0174114a
children 07ae722ec64e
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xdpyinfo"
4 VERSION="1.1.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-libXi xorg-libXrender \
11 xorg-libXinerama xorg-libXp"
12 BUILD_DEPENDS="xorg-dev xorg-libXtst-dev"
13 WEB_SITE="http://xorg.freedesktop.org/"
14 WGET_URL="$WEB_SITE/releases/individual/app/$TARBALL"
15 TAGS="utility xorg display"
17 # Rules to configure and make the package.ls sr
18 compile_rules()
19 {
20 cd $src
21 ./configure \
22 --prefix=/usr \
23 --mandir=/usr/share/man \
24 $CONFIGURE_ARGS &&
25 make &&
26 make DESTDIR=$PWD/_pkg install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr
33 cp -a $_pkg/usr/bin $fs/usr
35 }