summaryrefslogtreecommitdiff
path: root/community/libsieve/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/libsieve/PKGBUILD')
-rw-r--r--community/libsieve/PKGBUILD20
1 files changed, 20 insertions, 0 deletions
diff --git a/community/libsieve/PKGBUILD b/community/libsieve/PKGBUILD
new file mode 100644
index 000000000..b9e1477b8
--- /dev/null
+++ b/community/libsieve/PKGBUILD
@@ -0,0 +1,20 @@
+# $Id: PKGBUILD 72453 2012-06-14 19:07:49Z spupykin $
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+
+pkgname=libsieve
+pkgver=2.3.1
+pkgrel=1
+pkgdesc="sieve interpretator lib"
+arch=(i686 x86_64)
+url="http://libsieve.sourceforge.net/"
+license=('GPL')
+options=('!libtool')
+source=("https://github.com/downloads/sodabrew/libsieve/libsieve-$pkgver.tar.gz")
+md5sums=('bb48eecf877cc7fdb2b0dfe757b48d7a')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+ ./configure --prefix=/usr
+ make
+ make DESTDIR="$pkgdir/" install
+}