repo/xorg/xinit/build

15 lines
264 B
Plaintext
Raw Normal View History

2019-06-28 00:33:04 -06:00
#!/bin/sh -e
2021-07-03 14:31:18 -06: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 00:33:04 -06:00
./configure \
--prefix=/usr \
--with-xinitdir=/etc/X11/xinit
make
make DESTDIR="$1" install
2019-09-15 00:47:41 -06:00