blob: c8c762f42279079efde98e2fc08120b727bfba77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Description: XCB library
# URL: http://xcb.freedesktop.org
# Maintainer: Tilman Sauerbeck, tilman at crux dot nu
# Packagger: thierryn1 at hispeed dot ch
# Depends on: xorg-xcb-proto, xorg-libxdmcp, xorg-libxau, libxslt, libpthread-stubs
# Run on: xorg-libxdmcp,xorg-libxau,libxslt,libpthread-stubs
name=xorg-libxcb
version=1.7
release=1
source=(http://xcb.freedesktop.org/dist/libxcb-$version.tar.bz2)
build() {
cd libxcb-$version
PYTHON=python2 ./configure --prefix=/usr
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share
}
|