2019-06-27 00:10:39 -06:00
|
|
|
#!/bin/sh -e
|
|
|
|
|
|
|
|
CFLAGS_FOR_BUILD=-fPIC \
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
2020-03-17 06:05:04 -06:00
|
|
|
--without-xmlto \
|
|
|
|
--disable-specs \
|
2019-06-27 00:10:39 -06:00
|
|
|
--enable-static
|
|
|
|
|
|
|
|
make
|
|
|
|
make DESTDIR="$1" install
|
2019-10-10 00:25:39 -06:00
|
|
|
|
2021-07-06 05:41:12 -06:00
|
|
|
# Conflicts with xorgproto.
|
2019-10-10 00:25:39 -06:00
|
|
|
rm -f "$1/usr/include/X11/extensions/XKBgeom.h"
|
2021-07-06 05:41:12 -06:00
|
|
|
|
|
|
|
# Remove library documentation.
|
|
|
|
rm -rf "$1/usr/share/man/man3"
|