summaryrefslogtreecommitdiff
path: root/community/libesmtp/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2011-11-05 23:14:55 +0000
committerroot <root@rshg054.dnsready.net>2011-11-05 23:14:55 +0000
commit82fd7f658509afe9737e14e8d1ee9fefe13c9d1f (patch)
tree9c41c06e2e0b0ef270dc8eec367171163497f622 /community/libesmtp/PKGBUILD
parent3026bb55941e3b04b56f5fb41b88941c6c2ce0cd (diff)
Sat Nov 5 23:14:55 UTC 2011
Diffstat (limited to 'community/libesmtp/PKGBUILD')
-rw-r--r--community/libesmtp/PKGBUILD24
1 files changed, 15 insertions, 9 deletions
diff --git a/community/libesmtp/PKGBUILD b/community/libesmtp/PKGBUILD
index f254a928e..76c54991e 100644
--- a/community/libesmtp/PKGBUILD
+++ b/community/libesmtp/PKGBUILD
@@ -1,22 +1,28 @@
-# $Id: PKGBUILD 31477 2010-10-31 23:37:55Z loui $
+# $Id: PKGBUILD 57896 2011-11-04 08:47:23Z lfleischer $
+# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
# Contributor: Roman Kyrylych <roman@archlinux.org>
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
pkgname=libesmtp
pkgver=1.0.6
-pkgrel=1
-pkgdesc="A library to manage posting (or submission of) electronic mail using SMTP to a preconfigured Mail Transport Agent (MTA)"
+pkgrel=2
+pkgdesc='A library to manage posting mail to a preconfigured MTA.'
arch=('i686' 'x86_64')
-url="http://www.stafford.uklinux.net/libesmtp/"
+url='http://www.stafford.uklinux.net/libesmtp/'
license=('LGPL')
depends=('openssl')
-source=(http://www.stafford.uklinux.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
+source=("http://www.stafford.uklinux.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2")
+md5sums=('bf3915e627fd8f35524a8fdfeed979c8')
options=('!libtool')
build() {
- cd ${srcdir}/${pkgname}-${pkgver}
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
./configure --prefix=/usr
- make || return 1
- make DESTDIR=${pkgdir} install
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
}
-md5sums=('bf3915e627fd8f35524a8fdfeed979c8')