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

25 lines
479 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 \
2019-08-18 09:06:38 +00:00
--disable-xwayland \
--disable-unit-tests \
2019-06-28 06:28:15 +00:00
--enable-glx \
--enable-dri \
--enable-dri2 \
--enable-dri3 \
2019-08-18 09:06:38 +00:00
--enable-xorg \
--enable-config-udev \
--enable-config-udev-kms \
--with-sha1=libcrypto \
--with-systemd-daemon=off
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"
2019-08-29 21:04:12 +00:00
# Set suid for xorg.
chmod u+s "$1/usr/bin/Xorg"