17 lines
296 B
Bash
Executable File
17 lines
296 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sbindir=/usr/bin \
|
|
--mandir=/usr/share/man \
|
|
--sysconfdir=/etc \
|
|
--localstatedir=/var \
|
|
--disable-nls \
|
|
--enable-daemon \
|
|
--enable-utp \
|
|
--without-systemd-daemon \
|
|
--without-gtk
|
|
|
|
make
|
|
make DESTDIR="$1" install
|