16 lines
223 B
Plaintext
16 lines
223 B
Plaintext
|
#!/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"
|