wok-next view libxcb/receipt @ rev 86

Add : XCB supprot for Xorg (X11)
author Christophe Lincoln <pankso@slitaz.org>
date Wed Jan 02 22:18:03 2008 +0100 (2008-01-02)
parents
children
line source
1 # SliTaz package receipt.
3 PACKAGE="libxcb"
4 VERSION="1.1"
5 CATEGORY="x-window"
6 SHORT_DESC="The X protocol C-language Binding"
7 MAINTAINER="pankso@slitaz.org"
8 BUILD_DEPENDS="libpthread-stubs xorg-proto"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://xcb.freedesktop.org/"
11 WGET_URL="http://xcb.freedesktop.org/dist/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 --prefix=/usr \
19 --infodir=/usr/share/info \
20 --mandir=/usr/share/man \
21 --with-html-dir=/usr/share/doc \
22 $CONFIGURE_ARGS
23 make
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
32 strip -s $fs/usr/lib/*
33 }