mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-16 03:30:23 -07:00
16 lines
280 B
Bash
Executable File
16 lines
280 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
CFLAGS_FOR_BUILD=-fPIC \
|
|
./configure \
|
|
--prefix=/usr \
|
|
--without-xmlto \
|
|
--disable-specs \
|
|
--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"
|