blob: 645370dd92eae2df5026e0b4c9236471df2ca08d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/bin/sh
NAME="libxcb"
DESC="X11 client-side library"
MAKEDEPS="libxau xcb-proto libpthread-stubs libxdmcp libxslt python"
PKG_VER=1.14
SOURCE="https://xorg.freedesktop.org/archive/individual/lib/libxcb-$PKG_VER.tar.xz"
build() {
./configure \
--prefix=/usr \
--enable-xkb \
--enable-xinput \
--disable-xprint
make
}
package() {
make DESTDIR="$PKG_DEST" install
}
|