2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-04 23:12:28 +00:00
repo/xorg/xinit/build

15 lines
264 B
Plaintext
Raw Normal View History

2019-06-28 06:33:04 +00:00
#!/bin/sh -e
2021-07-03 20:31:18 +00:00
# Make xauth optional at runtime.
cmd='command -v xauth >/dev/null \&\&'
sed "s#\(enable_xauth\)=1#$cmd&||\1=0#" startx.cpp > _
mv -f _ startx.cpp
2019-06-28 06:33:04 +00:00
./configure \
--prefix=/usr \
--with-xinitdir=/etc/X11/xinit
make
make DESTDIR="$1" install
2019-09-15 06:47:41 +00:00