forked from kiss-community/repo
20 lines
367 B
Bash
Executable File
20 lines
367 B
Bash
Executable File
#!/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
|
|
|
|
# Remove docs.
|
|
rm -rf "$1/usr/share/doc"
|