blob: 09dd2707991526b29beb3245e81762c7a3e9468d (
plain)
1 # Description: Mail filter for the dovecot LDA
2 # URL: http://wiki.dovecot.org/LDA/Sieve
3 # Maintainer: Lucas Hazel, lucas at die dot net dot au
4 # Depends on: dovecot
5
6 name=dovecot-sieve
7 version=0.1.13
8 release=1
9 source=(http://www.rename-it.nl/dovecot/1.2/dovecot-1.2-sieve-$version.tar.gz)
10
11 build() {
12 cd dovecot-1.2-sieve-$version
13 ./configure --prefix=/usr \
14 --libexecdir=/usr/lib \
15 --mandir=/usr/man \
16 --with-dovecot=/usr/lib/dovecot
17 make
18 make DESTDIR=$PKG install
19 }
|