From 9a458282e61fc4548fb28a3928beb148e09d5477 Mon Sep 17 00:00:00 2001 From: TBK Date: Sun, 26 Nov 2017 17:12:36 +0100 Subject: unmaintained/dovecot-antispam-plugin: move from testing This package has been deprecated by the developer- https://hg.dovecot.org/ --- unmaintained/dovecot-antispam-plugin/APKBUILD | 46 +++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 unmaintained/dovecot-antispam-plugin/APKBUILD (limited to 'unmaintained') diff --git a/unmaintained/dovecot-antispam-plugin/APKBUILD b/unmaintained/dovecot-antispam-plugin/APKBUILD new file mode 100644 index 0000000000..c053761754 --- /dev/null +++ b/unmaintained/dovecot-antispam-plugin/APKBUILD @@ -0,0 +1,46 @@ +# Contributor: Kozak Ivan +# Maintainer: Kozak Ivan +pkgname=dovecot-antispam-plugin +pkgver=51 +pkgrel=2 +pkgdesc="Integrates DSPAM into dovecot IMAP server. Mercurial Version for dovecot >= 2.1" +url="http://hg.dovecot.org/dovecot-antispam-plugin/" +arch="all" +license="GPL" +depends="dovecot" +depends_dev="dovecot-dev mercurial autoconf automake gawk" +makedepends="$depends_dev" +install="" +subpackages="$pkgname-doc" +source="" + +_hgroot="http://hg.dovecot.org/dovecot-antispam-plugin" +_hgrepo="dovecot-antispam-plugin" +_builddir="$srcdir/$_hgrepo" + +prepare() { + cd "$srcdir" + msg "Connecting to Mercurial server..." + if [ -d "$_hgrepo" ]; then + cd "$_hgrepo" + hg pull -r 51 -u + msg "The local files are updated." + else + hg clone -r 51 "$_hgroot" "$_hgrepo" + fi + update_config_guess || return 1 +} + +build() { + cd "$_builddir" + ./autogen.sh || return 1 + ./configure --prefix=/usr --with-dovecot=/usr/lib/dovecot || return 1 + sed -i -e 's/install -o/install -D -o/' -e 's|$(INSTALLDIR)/|$(INSTALLDIR)/$(LIBRARY_NAME)|' Makefile || return 1 + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 +} + -- cgit v1.2.3