summaryrefslogtreecommitdiff
path: root/extra/re-alpine
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@endefensadelsl.org>2014-07-04 03:57:35 +0000
committerNicolás Reynolds <fauno@endefensadelsl.org>2014-07-04 03:57:35 +0000
commit32fb2c222ff8558d8abdfa411e8487dc9a3c0696 (patch)
tree75539d1ce5e644234d0c1f85faebd3ae17c2377d /extra/re-alpine
parent92723c41135cfb106d37d4343603e63dc99922ca (diff)
Fri Jul 4 03:52:39 UTC 2014
Diffstat (limited to 'extra/re-alpine')
-rw-r--r--extra/re-alpine/PKGBUILD16
1 files changed, 10 insertions, 6 deletions
diff --git a/extra/re-alpine/PKGBUILD b/extra/re-alpine/PKGBUILD
index bb3ce25ef..6c60cd7fe 100644
--- a/extra/re-alpine/PKGBUILD
+++ b/extra/re-alpine/PKGBUILD
@@ -1,15 +1,15 @@
-# $Id: PKGBUILD 174144 2013-01-03 03:51:33Z eric $
+# $Id: PKGBUILD 216426 2014-07-03 19:05:41Z eric $
# Maintainer: Eric Bélanger <eric@archlinux.org>
# Contributor: Smith Dhumbumroong <zodmaner@gmail.com>
pkgname=re-alpine
pkgver=2.03
-pkgrel=1
+pkgrel=2
pkgdesc="The continuation of the Alpine email client from University of Washington"
arch=('i686' 'x86_64')
url="http://sourceforge.net/projects/re-alpine/"
license=('APACHE')
-depends=('libldap' 'krb5')
+depends=('libldap' 'krb5' 'pam')
optdepends=('aspell: spell-checking support'
'hunspell: spell-checking support')
options=('!makeflags')
@@ -18,9 +18,13 @@ source=(http://downloads.sourceforge.net/project/re-alpine/${pkgname}-${pkgver}.
sha1sums=('8e1c4f4a4d38814478e8bd3bbeed1c0f8ee9491b'
'c09a8e42f9dba3e63a3755a9c418af95da721d8d')
+prepare() {
+ cd ${pkgname}-${pkgver}
+ patch -p1 -i "${srcdir}/maildir.patch"
+}
+
build() {
- cd "${srcdir}/${pkgname}-${pkgver}"
- patch -p1 < ../maildir.patch
+ cd ${pkgname}-${pkgver}
LIBS+="-lpam -lkrb5 -lcrypto" ./configure --prefix=/usr --without-passfile --without-tcl \
--disable-shared --with-system-pinerc=/etc/alpine.d/pine.conf \
--with-system-fixed-pinerc=/etc/alpine.d/pine.conf.fixed
@@ -28,6 +32,6 @@ build() {
}
package() {
- cd "${srcdir}/${pkgname}-${pkgver}"
+ cd ${pkgname}-${pkgver}
make DESTDIR="${pkgdir}" install
}