Received: from vikavolt.denkimushi.com (vikavolt.denkimushi.com [212.159.101.34]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 4F6BD782D92 for ; Mon, 27 Jan 2020 17:31:53 +0000 (UTC) Received: from localhost.localdomain (roc.lan [192.168.88.3]) by vikavolt.denkimushi.com (Postfix) with ESMTP id 1742D1D868; Mon, 27 Jan 2020 17:31:47 +0000 (GMT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=denkimushi.com; s=mail; t=1580146308; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=DhVfaRntz+TX7U3mQ+JXX6rmF4qvhvHh0IF+pIPCOUk=; b=vznuVlpHVeELEu/UZ8h1edpogps4nxbbTbAsO9YA3+MNpXLxmUInbp4ydLQXuLe4mEXAfJ h+LW8hruWUJKwjHlFe3G1YMdYjlKUiJ5vg77lylDXFaC4tfg/eIUo80ZsvD8HkxoekOMyf fkP0nZllcAlDjLhFbFhbqsPwqRABeME= From: Duncan Bellamy To: alpine-aports@lists.alpinelinux.org Cc: Duncan Bellamy Subject: [PATCH] testing/dovecot-fts-xapian: new aport Date: Mon, 27 Jan 2020 17:31:33 +0000 Message-Id: <20200127173133.23613-1-dunk@denkimushi.com> X-Mailer: git-send-email 2.24.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Add APKBUILD file for the upcomming fts xapian plugin for dovecot. Builds with static files disabled. https://github.com/grosjo/fts-xapian Dovecot xapian fts plugin testing/ --- testing/dovecot-fts-xapian/APKBUILD | 32 +++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 testing/dovecot-fts-xapian/APKBUILD diff --git a/testing/dovecot-fts-xapian/APKBUILD b/testing/dovecot-fts-xapian/APKBUILD new file mode 100644 index 0000000000..aff0f63e63 --- /dev/null +++ b/testing/dovecot-fts-xapian/APKBUILD @@ -0,0 +1,32 @@ +# Contributor: Duncan Bellamy +# Maintainer: Duncan Bellamy +pkgname="dovecot-fts-xapian" +pkgver="1.2.7" +pkgrel=0 +pkgdesc="Dovecot xapian fts plugin" +url="https://github.com/grosjo/fts-xapian" +arch="all" +license="LGPL-2.1-or-later" +depends="dovecot xapian-core" +makedepends="automake autoconf libtool dovecot-dev xapian-core-dev icu-dev" +source="$pkgname-$pkgver.tar.gz::https://github.com/grosjo/fts-xapian/archive/$pkgver.tar.gz" +builddir="$srcdir/"fts-xapian-$pkgver + +build() { + libtoolize + autoreconf -vi + PANDOC=false ./configure \ + --enable-static=no \ + --with-dovecot=/usr/lib/dovecot + make +} + +check() { + make check +} + +package() { + make DESTDIR="$pkgdir" install +} + +sha512sums="85f115fa62b574bac8aa60a64b9f5da79eef721b332458b50df49c4e11c683ad08d7057a59b2b7a3a0909255ab606c56627d456a7ad2b56f019d00a5771d1fdc dovecot-fts-xapian-1.2.7.tar.gz" -- 2.24.1