wok view xorg-xrdb/receipt @ rev 6093

libarchive: fix BUILD_DEPENDS
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Aug 30 15:45:46 2010 +0200 (2010-08-30)
parents 39e9a9a762e3
children 07ae722ec64e
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xrdb"
4 VERSION="1.0.5"
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.gz"
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 }