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