summaryrefslogtreecommitdiff
path: root/staging/libetpan/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'staging/libetpan/PKGBUILD')
-rw-r--r--staging/libetpan/PKGBUILD26
1 files changed, 26 insertions, 0 deletions
diff --git a/staging/libetpan/PKGBUILD b/staging/libetpan/PKGBUILD
new file mode 100644
index 000000000..e0df0b365
--- /dev/null
+++ b/staging/libetpan/PKGBUILD
@@ -0,0 +1,26 @@
+# $Id: PKGBUILD 145930 2012-01-04 09:16:48Z andyrtr $
+# Maintainer: Andreas Radke <andyrtr@archlinux.org>
+
+pkgname=libetpan
+pkgver=1.0
+pkgrel=4
+pkgdesc="A portable middleware for email access"
+arch=('i686' 'x86_64')
+url="http://www.etpan.org/"
+license=("custom:etpan")
+depends=('db>=5.3.15' 'libsasl>=2.1.23' 'curl>=7.23.1' 'expat>=2.0.1-1')
+options=('!libtool')
+source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+md5sums=('5addc766141a0b1d29ee1ca4ba1b6808')
+
+build() {
+ cd ${srcdir}/${pkgname}-${pkgver}
+ ./configure --prefix=/usr --disable-static
+ make
+}
+
+package() {
+ cd ${srcdir}/${pkgname}-${pkgver}
+ make DESTDIR=${pkgdir} install
+ install -Dm644 COPYRIGHT ${pkgdir}/usr/share/licenses/$pkgname/license.txt
+}