new package:

- add package libxcb
This commit is contained in:
Stephan Raue 2009-12-01 11:09:11 +01:00
parent e5a508f528
commit afb41fd091
3 changed files with 28 additions and 0 deletions

19
packages/x11/lib/libxcb/build Executable file
View File

@ -0,0 +1,19 @@
#!/bin/sh
. config/options
$SCRIPTS/build toolchain
$SCRIPTS/build xcb-proto
cd $PKG_BUILD
./configure --host=$TARGET_NAME \
--build=$HOST_NAME \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--disable-static \
--enable-shared \
make
$MAKEINSTALL

View File

@ -0,0 +1,8 @@
#!/bin/sh
. config/options
mkdir -p $INSTALL/usr/lib
cp -PR $PKG_BUILD/src/.libs/libxcb.so* $INSTALL/usr/lib
cp -PR $PKG_BUILD/src/.libs/libxcb-glx*.so* $INSTALL/usr/lib
rm -rf $INSTALL/usr/lib/libxcb-glx*.so*T

View File

@ -0,0 +1 @@
http://xcb.freedesktop.org/dist/libxcb-1.4.tar.bz2