# HG changeset patch # User Mallory MOLLO # Date 1240412970 -7200 # Node ID a17a199c9ca3b2b42cdd0e0aa5f1e3657abf3631 # Parent b2dc7e5e4d6bbdf49e98e5149e96bf708b301ce4 Add: libxcb diff -r b2dc7e5e4d6b -r a17a199c9ca3 libxcb-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libxcb-dev/receipt Wed Apr 22 17:09:30 2009 +0200 @@ -0,0 +1,20 @@ +# SliTaz package receipt. + +PACKAGE="libxcb-dev" +VERSION="1.2" +CATEGORY="development" +SHORT_DESC="libxcb development files" +MAINTAINER="mallory@sweetpeople.org" +WANTED="libxcb" +WEB_SITE="http://xcb.freedesktop.org" + + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $_pkg/usr/include $fs/usr + cp -a $_pkg/usr/lib/*.*a $fs/usr/lib + cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib +} + diff -r b2dc7e5e4d6b -r a17a199c9ca3 libxcb/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libxcb/receipt Wed Apr 22 17:09:30 2009 +0200 @@ -0,0 +1,32 @@ +# SliTaz package receipt. + +PACKAGE="libxcb" +VERSION="1.2" +CATEGORY="x-window" +SHORT_DESC="The X protocol C-language Binding (XCB) is a replacement for Xlib featuring a small footprint, latency hiding, direct access to the protocol, improved threading support, and extensibility." +MAINTAINER="mallory@sweetpeople.org" +DEPENDS="xcb-proto" +BUILD_DEPENDS="xcb-proto" +TARBALL="$PACKAGE-$VERSION.tar.bz2" +WEB_SITE="http://xcb.freedesktop.org" +WGET_URL="$WEB_SITE/dist/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + ./configure \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + $CONFIGURE_ARGS && + make && make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib +} +