2021-05-10 12:55:12 -04:00
|
|
|
#!/bin/sh -e
|
|
|
|
|
2021-05-11 00:07:37 -04:00
|
|
|
# We have an alternative system, use "ksh" and "sh" as binary names.
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--bindir=/usr/bin \
|
2021-05-10 12:55:12 -04:00
|
|
|
--mandir=/usr/share/man \
|
2021-05-11 00:07:37 -04:00
|
|
|
--enable-ksh \
|
2021-05-10 12:55:12 -04:00
|
|
|
--enable-sh
|
|
|
|
|
|
|
|
make
|
|
|
|
make DESTDIR="$1" install
|