2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-04 15:02:27 +00:00
repo/xorg/xorg-server/build
2020-01-19 16:04:57 +02:00

24 lines
460 B
Bash
Executable File

#!/bin/sh -e
patch -p1 < rootless_modesetting.patch
./configure \
--prefix=/usr \
--localstatedir=/var \
--disable-systemd-logind \
--disable-xwayland \
--disable-unit-tests \
--enable-glx \
--enable-dri \
--enable-dri2 \
--enable-dri3 \
--enable-glamor \
--enable-xorg \
--with-sha1=libcrypto \
--with-systemd-daemon=off
make
make DESTDIR="$1" install
rm -f "$1/usr/share/X11/xorg.conf.d/10-evdev.conf"