mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-15 19:20:10 -07:00
13 lines
242 B
Bash
Executable File
13 lines
242 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--with-xinitdir=/etc/X11/xinit
|
|
|
|
make
|
|
make DESTDIR="$1" install
|
|
|
|
# Make xauth optional.
|
|
sed -i 's#enable_xauth=1#command -v xauth >/dev/null \&\&&||enable_xauth=0#' \
|
|
"$1/usr/bin/startx"
|