mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-15 19:20:10 -07:00
16 lines
354 B
Bash
Executable File
16 lines
354 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
# Swap to shell script instead of perl script
|
|
# for conversion of rules files. See files/xml2lst.
|
|
sed -i 's/perl //;s/xml2lst\.pl/xml2lst/' rules/Makefile.in
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--with-xkb-rules-symlink=xfree86,xorg \
|
|
--enable-compat-rules \
|
|
--without-xsltproc \
|
|
--disable-nls
|
|
|
|
make
|
|
make DESTDIR="$1" install
|