summaryrefslogtreecommitdiff
path: root/community-testing/courier-maildrop/PKGBUILD
diff options
context:
space:
mode:
authorNicolas Reynolds <fauno@kiwwwi.com.ar>2011-12-01 11:10:31 -0300
committerNicolas Reynolds <fauno@kiwwwi.com.ar>2011-12-01 11:10:31 -0300
commitf5ed25b75901e05f9933b548c8bbdda654608c32 (patch)
tree37db6969ba4d61e110bab354ab6dc0db64f0a633 /community-testing/courier-maildrop/PKGBUILD
parent1200fd46a32625f2ac4b035653cb49c22cce6426 (diff)
parentbc0657f7159d0b01373ecb59afc426b98a172b1e (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community/dangerdeep/PKGBUILD community/lsb-release/PKGBUILD community/perl-gtk2-mozembed/PKGBUILD extra/camsource/PKGBUILD extra/gsf-sharp/PKGBUILD extra/muine/PKGBUILD extra/ocfs2-tools/PKGBUILD extra/telepathy-kde-accounts-kcm-plugins/PKGBUILD
Diffstat (limited to 'community-testing/courier-maildrop/PKGBUILD')
-rw-r--r--community-testing/courier-maildrop/PKGBUILD46
1 files changed, 0 insertions, 46 deletions
diff --git a/community-testing/courier-maildrop/PKGBUILD b/community-testing/courier-maildrop/PKGBUILD
deleted file mode 100644
index a2cd7edb0..000000000
--- a/community-testing/courier-maildrop/PKGBUILD
+++ /dev/null
@@ -1,46 +0,0 @@
-# $Id: PKGBUILD 57086 2009-10-31 13:13:36Z allan $
-# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
-# Contributor: tobias <tobias@archlinux.org>
-# Contributor: Tobias Kieslich <tobias@justdreams.de>
-
-pkgname=courier-maildrop
-_srcname=maildrop
-pkgver=2.5.4
-pkgrel=3
-pkgdesc="mail delivery agent - procmail like but nicer syntax"
-arch=('i686' 'x86_64')
-license=('GPL2')
-url="http://courier-mta.org/maildrop/"
-depends=('courier-authlib>=0.63.0' 'gamin' 'pcre' 'gdbm')
-conflicts=('courier-mta')
-options=(!libtool)
-source=(http://downloads.sourceforge.net/project/courier/${_srcname}/${pkgver}/${_srcname}-${pkgver}.tar.bz2)
-md5sums=('5770345cdceae28bdc24809e7adb3426')
-
-build() {
- cd ${srcdir}/${_srcname}-${pkgver}
-
- ./configure --prefix=/usr \
- --sysconfdir=/etc/courier \
- --localstatedir=/var \
- --mandir=/usr/share/man \
- --with-db=gdbm \
- --with-devel
- make LDFLAGS+=-lstdc++
-}
-
-package() {
- cd ${srcdir}/${_srcname}-${pkgver}
-
- make DESTDIR=${pkgdir} install
- chmod u+s ${pkgdir}/usr/bin/maildrop
- cd ${pkgdir}/usr/share/maildrop/html
- for files in *; do
- install -Dm644 ${files} ${pkgdir}/usr/share/htmldoc/${files}
- done
- rm -rf ${pkgdir}/usr/share/maildrop
-
- # docs say we can remove .a files after make
- cd ${pkgdir}
- find ${pkgdir} -name '*\.a' -exec rm -f {} \;
-}