wok view libxcb/receipt @ rev 5986

h8300-gdb: upgrade from 6.8 to 7.1
author Matthew Sheets <rcx@zoominternet.net>
date Sat Aug 14 00:26:30 2010 +0000 (2010-08-14)
parents e2ae0e65c659
children 1b46a1e8145f
line source
1 # SliTaz package receipt.
3 PACKAGE="libxcb"
4 VERSION="1.6"
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 pkg-config xorg-libXau-dev libpthread-stubs"
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 --prefix=/usr \
22 --infodir=/usr/share/info \
23 --mandir=/usr/share/man \
24 $CONFIGURE_ARGS &&
25 make && make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
33 }