2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-16 12:42:28 +00:00
repo/xorg/xorg-server/build

16 lines
259 B
Plaintext
Raw Normal View History

2019-06-27 05:47:59 +00:00
#!/bin/sh -e
./configure \
--prefix=/usr \
2019-06-28 06:28:15 +00:00
--disable-systemd-logind \
--enable-glx \
--enable-dri \
--enable-dri2 \
--enable-dri3 \
2019-07-07 22:45:42 +00:00
--enable-xorg
2019-06-27 05:47:59 +00:00
make
make DESTDIR="$1" install
rm -f "$1/usr/share/X11/xorg.conf.d/10-evdev.conf"