wok view xorg-xtrans/receipt @ rev 8237

busybox: do not duplicate code
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jan 27 11:56:53 2011 +0100 (2011-01-27)
parents 0a82a5440a11
children b819c0ead351
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xtrans"
4 VERSION="1.2.6"
5 CATEGORY="development"
6 SHORT_DESC="Xorg library to handle network protocol transport in a modular fashion."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="xorg-util-macros"
9 BUILD_DEPENDS="xorg-util-macros"
10 SOURCE="xtrans"
11 TARBALL="$SOURCE-$VERSION.tar.bz2"
12 WEB_SITE="http://www.x.org/"
13 WGET_URL="$XORG_MIRROR/lib/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr --sysconfdir=/etc \
20 --mandir=/usr/share/man --localstatedir=/var \
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 cp -a $_pkg/* $fs
30 }