21 lines
441 B
Plaintext
21 lines
441 B
Plaintext
# Description: XCB library
|
|
# URL: http://xcb.freedesktop.org
|
|
# Maintainer: CRUX Xorg Team, xorg-ports at crux dot nu
|
|
# Depends on: xorg-xcb-proto, xorg-libxdmcp, xorg-libxau, libxslt, libpthread-stubs, xorg-xcb-proto
|
|
|
|
name=xorg-libxcb
|
|
version=1.9
|
|
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
|
|
}
|