blob: ecd42620be686fc298abc5c4d3ab66982ff435f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Maintainer: Georgy Kibardin <georgy at kibardin.name>
pkgname=isync-utf8-mailboxes
pkgver=1.4.2
pkgrel=2
pkgdesc="IMAP and MailDir mailbox synchronizer"
arch=('x86_64')
url="http://isync.sourceforge.net"
conflicts=('isync')
provides=('isync')
license=('GPL2')
depends=('libsasl' 'zlib')
source=(git+https://git.code.sf.net/u/shashurup/isync#branch=utf8-mailboxes)
sha512sums=(SKIP)
build() {
cd isync
./autogen.sh
./configure --prefix=/usr
make
}
package() {
cd isync
make DESTDIR="$pkgdir" install
}
|