11 lines
219 B
Bash
Executable File
11 lines
219 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
# Change the SBINDIR and BINDIR to /usr/bin to keep kiss happy
|
|
sed -i 's/\/bin/\/usr\/bin/' Makefile
|
|
sed -i 's/\/sbin/\/usr\/bin/' Makefile
|
|
|
|
ssu ./configure.sh config.in
|
|
|
|
make
|
|
make DESTDIR="$1" install
|