2019-06-23 04:15:26 -06:00
|
|
|
#!/bin/sh -e
|
|
|
|
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
2020-05-08 02:40:20 -06:00
|
|
|
--sbindir=/usr/bin \
|
|
|
|
--libexecdir=/usr/lib \
|
2019-09-08 09:50:23 -06:00
|
|
|
--disable-pam-session \
|
|
|
|
--disable-root-mailer \
|
2020-05-08 02:31:22 -06:00
|
|
|
--disable-nls \
|
2019-09-08 09:50:23 -06:00
|
|
|
--enable-pie \
|
|
|
|
--without-pam \
|
|
|
|
--without-sendmail \
|
2019-06-23 04:15:26 -06:00
|
|
|
--with-ignore-dot \
|
|
|
|
--with-insults=disabled \
|
|
|
|
--with-logfac=auth \
|
|
|
|
--with-passprompt="[sudo] password for %p: "
|
|
|
|
|
|
|
|
make
|
2019-08-30 11:03:08 -06:00
|
|
|
make \
|
|
|
|
DESTDIR="$1" \
|
|
|
|
install_uid="$(id -u)" \
|
|
|
|
install_gid="$(id -g)" \
|
2019-09-08 09:50:23 -06:00
|
|
|
install
|