10 lines
171 B
Plaintext
10 lines
171 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
./configure \
|
||
|
--prefix=/usr
|
||
|
|
||
|
make
|
||
|
# Work around a bug in the generated install script
|
||
|
mkdir -p "$1/usr/share/X11/app-defaults"
|
||
|
make DESTDIR="$1" install
|