blob: b59aa070f40a0a47093849553640c506951c054a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# 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-libxdmcp, xorg-libxau, libxslt, libpthread-stubs, xorg-xcb-proto
name=xorg-libxcb
version=1.4
release=1
source=(http://xcb.freedesktop.org/dist/libxcb-$version.tar.bz2)
build() {
cd libxcb-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share
}
|