16 lines
223 B
Bash
Executable File
16 lines
223 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--enable-pop \
|
|
--enable-imap \
|
|
--enable-smtp \
|
|
--with-ssl \
|
|
--with-sasl
|
|
|
|
make
|
|
make DESTDIR="$1" install
|
|
|
|
rm -f "$1/etc/mime.types"
|