13 lines
239 B
Plaintext
13 lines
239 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
# We have an alternative system, use "ksh" and "sh" as binary names.
|
||
|
./configure \
|
||
|
--prefix=/usr \
|
||
|
--bindir=/usr/bin \
|
||
|
--mandir=/usr/share/man \
|
||
|
--enable-ksh \
|
||
|
--enable-sh
|
||
|
|
||
|
make
|
||
|
make DESTDIR="$1" install
|