wok-current annotate 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 |
rev | line source |
---|---|
mallory@2685 | 1 # SliTaz package receipt. |
mallory@2685 | 2 |
mallory@2685 | 3 PACKAGE="libxcb" |
pascal@14566 | 4 VERSION="1.9.1" |
mallory@2685 | 5 CATEGORY="x-window" |
pankso@2960 | 6 SHORT_DESC="The X protocol C-language Binding (XCB) is a replacement for \ |
pankso@2960 | 7 Xlib featuring a small footprint, latency hiding, direct access to the \ |
pankso@2960 | 8 protocol, improved threading support, and extensibility." |
mallory@2685 | 9 MAINTAINER="mallory@sweetpeople.org" |
pankso@2960 | 10 DEPENDS="xorg-libXau xorg-libXdmcp" |
slaxemulator@8029 | 11 BUILD_DEPENDS="xcb-proto libxslt-dev pkg-config libpthread-stubs xorg-libXau-dev xorg-libXdmcp-dev" |
mallory@2685 | 12 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
mallory@2685 | 13 WEB_SITE="http://xcb.freedesktop.org" |
mallory@2685 | 14 WGET_URL="$WEB_SITE/dist/$TARBALL" |
mallory@2685 | 15 |
mallory@2685 | 16 # Rules to configure and make the package. |
mallory@2685 | 17 compile_rules() |
mallory@2685 | 18 { |
mallory@2685 | 19 cd $src |
pascal@12942 | 20 ./configure \ |
slaxemulator@12932 | 21 --enable-xinput \ |
mallory@2685 | 22 $CONFIGURE_ARGS && |
slaxemulator@12932 | 23 make && make DESTDIR=$DESTDIR install |
mallory@2685 | 24 } |
mallory@2685 | 25 |
mallory@2685 | 26 # Rules to gen a SliTaz package suitable for Tazpkg. |
mallory@2685 | 27 genpkg_rules() |
mallory@2685 | 28 { |
slaxemulator@12932 | 29 mkdir -p $fs/usr/lib |
pascal@14566 | 30 cp -a $install/usr/lib/*.so* $fs/usr/lib |
mallory@2685 | 31 } |
mallory@2685 | 32 |