11 lines
164 B
Bash
Executable File
11 lines
164 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sbindir=/usr/bin \
|
|
--mandir=/usr/share/man \
|
|
--enable-compat-symlinks
|
|
|
|
make
|
|
make DESTDIR="$1" install
|