wok view xorg-xrdb/receipt @ rev 6993

Big update: xorg/libdrm/mesa (174 packages)
author Antoine Bodin <gokhlayeh@slitaz.org>
date Sun Oct 31 00:13:37 2010 +0200 (2010-10-31)
parents 88dcace026c6
children 666ad1272a0c
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xrdb"
4 VERSION="1.0.6"
5 CATEGORY="x-window"
6 SHORT_DESC="Xrdb is a program used for accessing the X resources of a server."
7 MAINTAINER="rocky@slitaz.org"
8 DEPENDS="xorg gcc"
9 BUILD_DEPENDS="xorg-libXmu-dev"
10 SOURCE="xrdb"
11 TARBALL="$SOURCE-$VERSION.tar.bz2"
12 WEB_SITE="http://www.x.org/"
13 WGET_URL="$XORG_MIRROR/app/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr \
20 --mandir=/usr/share/man \
21 $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 }