mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-16 11:40:21 -07:00
21 lines
398 B
Bash
Executable File
21 lines
398 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--disable-pam-session \
|
|
--disable-root-mailer \
|
|
--enable-pie \
|
|
--without-pam \
|
|
--without-sendmail \
|
|
--with-ignore-dot \
|
|
--with-insults=disabled \
|
|
--with-logfac=auth \
|
|
--with-passprompt="[sudo] password for %p: "
|
|
|
|
make
|
|
make \
|
|
DESTDIR="$1" \
|
|
install_uid="$(id -u)" \
|
|
install_gid="$(id -g)" \
|
|
install
|