mirror of
https://codeberg.org/kiss-community/repo
synced 2024-12-22 23:30:05 -07:00
11 lines
161 B
Plaintext
11 lines
161 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
./configure \
|
||
|
--prefix=/usr \
|
||
|
--disable-systemd-logind
|
||
|
|
||
|
make
|
||
|
make DESTDIR="$1" install
|
||
|
|
||
|
rm -f "$1/usr/share/X11/xorg.conf.d/10-evdev.conf"
|