mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-15 19:20:10 -07:00
23 lines
436 B
Bash
Executable File
23 lines
436 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
patch -p1 < rootless_modesetting.patch
|
|
patch -p1 < fix-crash.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
|