mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-17 04:00:14 -07:00
17 lines
325 B
Plaintext
17 lines
325 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
./configure \
|
||
|
--prefix=/usr \
|
||
|
--disable-nls \
|
||
|
--with-ignore-dot \
|
||
|
--with-insults=disabled \
|
||
|
--with-all-insults \
|
||
|
--without-sendmail \
|
||
|
--with-logfac=auth \
|
||
|
--disable-root-mailer \
|
||
|
--enable-pie \
|
||
|
--with-passprompt="[sudo] password for %p: "
|
||
|
|
||
|
make
|
||
|
make DESTDIR="$1" install
|