wok view libxcb/receipt @ rev 14566

Up xorg-libdmx (1.1.3), xorg-libXt (1.1.4), libxcb (1.9.1)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri May 24 11:52:29 2013 +0200 (2013-05-24)
parents ccb673f675b7
children 6726368e98f2
line source
1 # SliTaz package receipt.
3 PACKAGE="libxcb"
4 VERSION="1.9.1"
5 CATEGORY="x-window"
6 SHORT_DESC="The X protocol C-language Binding (XCB) is a replacement for \
7 Xlib featuring a small footprint, latency hiding, direct access to the \
8 protocol, improved threading support, and extensibility."
9 MAINTAINER="mallory@sweetpeople.org"
10 DEPENDS="xorg-libXau xorg-libXdmcp"
11 BUILD_DEPENDS="xcb-proto libxslt-dev pkg-config libpthread-stubs xorg-libXau-dev xorg-libXdmcp-dev"
12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
13 WEB_SITE="http://xcb.freedesktop.org"
14 WGET_URL="$WEB_SITE/dist/$TARBALL"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --enable-xinput \
22 $CONFIGURE_ARGS &&
23 make && make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $install/usr/lib/*.so* $fs/usr/lib
31 }