blob: a7d53475604616795804a45320b33d4876bd5a20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh -e
CFLAGS_FOR_BUILD=-fPIC \
./configure \
--prefix=/usr \
--enable-static
make
make DESTDIR="$1" install
# This will be removed once 'xorgproto' 2019.2
# is released.
rm -f "$1/usr/include/X11/extensions/XKBgeom.h"
|