16 lines
354 B
Plaintext
16 lines
354 B
Plaintext
|
#!/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
|