blob: fe9c84254ecc64037fa325c67f4e721d568367e3 (
plain)
1 # Description: Mailbox synchronizer
2 # URL: http://isync.sourceforge.net/
3 # Maintainer: Aaron Ball, nullspoon at oper dot io
4 # Depends on: cyrus-sasl
5 name=mbsync
6 version=1.5.0
7 release=1
8 source=(http://downloads.sourceforge.net/project/isync/isync/${version}/isync-${version}.tar.gz)
9
10 build() {
11 cd isync-${version}
12
13 ./configure \
14 --prefix=/usr \
15 --mandir=/usr/man \
16 --disable-compat \
17 --with-ssl \
18 --with-sasl \
19 --with-zlib
20
21 make
22 make DESTDIR=${PKG} install
23
24 rm -rf ${PKG}/usr/share/doc
25 }
26
27 # vim: set ft=sh ts=2 et:
|