repo/xorg/Makefile

25 lines
458 B
Makefile
Raw Normal View History

2021-06-29 01:25:40 +03:00
prepare:
git clone https://cgit.freedesktop.org/xorg/xserver/
cd xserver
2021-06-29 19:19:29 +03:00
PREFIX = $(prefix/)
2021-06-29 01:25:40 +03:00
xorg:
2021-06-29 01:57:26 +03:00
./configure \
2021-06-29 21:49:46 +03:00
--prefix=PREFIX \
2021-06-29 01:57:26 +03:00
--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
install:
make install
2021-06-29 01:25:40 +03:00