14 lines
172 B
Bash
Executable File
14 lines
172 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
autoconf;autoheader
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--enable-static
|
|
|
|
make
|
|
make scp
|
|
make DESTDIR="$1" install
|
|
|
|
ln -s /usr/bin/dbclient "$1/usr/bin/ssh"
|