2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-04 23:12:28 +00:00
repo/extra/sudo/build

21 lines
398 B
Plaintext
Raw Normal View History

2019-06-23 10:15:26 +00:00
#!/bin/sh -e
./configure \
--prefix=/usr \
2019-09-08 15:50:23 +00:00
--disable-pam-session \
--disable-root-mailer \
--enable-pie \
--without-pam \
--without-sendmail \
2019-06-23 10:15:26 +00:00
--with-ignore-dot \
--with-insults=disabled \
--with-logfac=auth \
--with-passprompt="[sudo] password for %p: "
make
2019-08-30 17:03:08 +00:00
make \
DESTDIR="$1" \
install_uid="$(id -u)" \
install_gid="$(id -g)" \
2019-09-08 15:50:23 +00:00
install