2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-10-04 00:10:58 -06:00
repo/xorg/xinit/build

13 lines
242 B
Plaintext
Raw Normal View History

2019-06-28 00:33:04 -06:00
#!/bin/sh -e
./configure \
--prefix=/usr \
--with-xinitdir=/etc/X11/xinit
make
make DESTDIR="$1" install
2019-09-15 00:47:41 -06:00
2020-02-10 02:28:59 -07:00
# Make xauth optional.
sed -i 's#enable_xauth=1#command -v xauth >/dev/null \&\&&||enable_xauth=0#' \
"$1/usr/bin/startx"