wok view xorg-xrdb/receipt @ rev 7571
chess3d: typo
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Dec 09 15:53:06 2010 +0100 (2010-12-09) |
parents | 07ae722ec64e |
children | 97c80101110a |
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xrdb"
4 VERSION="1.0.7"
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 }