mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-16 03:30:23 -07:00
11 lines
180 B
Bash
Executable File
11 lines
180 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--with-xinitdir=/etc/X11/xinit
|
|
|
|
make
|
|
make DESTDIR="$1" install
|
|
|
|
sed -i'' 's/enable_xauth=1/enable_xauth=0/' "$1/usr/bin/startx"
|