summaryrefslogtreecommitdiff
path: root/community/esmtp/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/esmtp/PKGBUILD')
-rw-r--r--community/esmtp/PKGBUILD39
1 files changed, 24 insertions, 15 deletions
diff --git a/community/esmtp/PKGBUILD b/community/esmtp/PKGBUILD
index f419feab9..b275244ff 100644
--- a/community/esmtp/PKGBUILD
+++ b/community/esmtp/PKGBUILD
@@ -1,27 +1,36 @@
-# Maintainer: Loui Chang <louipc dot ist at gmail company>
-# Contributor : Jeff Mickey <j@codemac.net>
-# Contributor : Aaron Griffin <aaron@archlinux.org>
+# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
+# Contributor: Loui Chang <louipc dot ist at gmail company>
+# Contributor: Jeff Mickey <j@codemac.net>
+# Contributor: Aaron Griffin <aaron@archlinux.org>
pkgname=esmtp
pkgver=1.2
-pkgrel=3
-pkgdesc="An easy smtp forwarder"
+pkgrel=4
+pkgdesc="An easy SMTP forwarder."
arch=('i686' 'x86_64')
-url="http://esmtp.sourceforge.net"
+url='http://esmtp.sourceforge.net'
license=('GPL')
depends=('libesmtp' 'openssl')
-optdepends=('liblockfile: for esmtp-wrapper script')
+optdepends=('liblockfile: for esmtp-wrapper script'
+ 'procmail: for local mail delivery')
provides=('smtp-forwarder')
-source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
+source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2")
md5sums=('79a9c1f9023d53f35bb82bf446150a72')
-build(){
- cd ${srcdir}/${pkgname}-${pkgver}
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr --sysconfdir=/etc
- make || return 1
- make DESTDIR=${pkgdir} install
- install -D -m644 README ${pkgdir}/usr/share/esmtp/README
- install -m755 esmtp-wrapper ${pkgdir}/usr/share/esmtp/esmtp-wrapper
- install -m755 ylwrap ${pkgdir}/usr/share/esmtp/ylwrap
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ make DESTDIR="${pkgdir}" install
+
+ install -Dm0644 README "${pkgdir}/usr/share/doc/esmtp/README"
+ install -Dm0644 sample.esmtprc "${pkgdir}/usr/share/doc/esmtp/sample.esmtprc"
+ install -Dm0755 esmtp-wrapper "${pkgdir}/usr/share/esmtp/esmtp-wrapper"
+ install -Dm0755 ylwrap "${pkgdir}/usr/share/esmtp/ylwrap"
}