blob: dc8652f985ca12e52a8ddea7d0e9951eb5064c6c (
plain)
1 # Description: XCB utilities library
2 # URL: http://xcb.freedesktop.org
3 # Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
4 # Depends on: xorg-libxcb-32 xorg-xcb-util
5
6 name=xorg-xcb-util-32
7 version=0.4.0
8 release=1
9 source=(http://xcb.freedesktop.org/dist/xcb-util-$version.tar.bz2)
10
11 build() {
12 cd xcb-util-$version
13
14 ./configure --prefix=/usr --libdir=/usr/lib32
15
16 make
17 make DESTDIR=$PKG install
18 rm -r $PKG/usr/include
19 }
|