13 lines
281 B
Bash
Executable File
13 lines
281 B
Bash
Executable File
#!/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
|