diff options
author | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-02-07 03:24:01 +0000 |
---|---|---|
committer | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-02-07 03:24:01 +0000 |
commit | b4f09e0a566f01cd9a250e2f44423169c70adc94 (patch) | |
tree | d407e83c47735fe0d24a6be03937a1d84f41c1cf /extra/libetpan | |
parent | ae5e27e4900c0c38025462f59e0524aef7aa630b (diff) |
Fri Feb 7 03:21:50 UTC 2014
Diffstat (limited to 'extra/libetpan')
-rw-r--r-- | extra/libetpan/PKGBUILD | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/extra/libetpan/PKGBUILD b/extra/libetpan/PKGBUILD index 033e99d79..3c4e298ce 100644 --- a/extra/libetpan/PKGBUILD +++ b/extra/libetpan/PKGBUILD @@ -1,19 +1,28 @@ -# $Id: PKGBUILD 198154 2013-10-30 13:07:31Z allan $ +# $Id: PKGBUILD 205522 2014-02-06 16:23:03Z andyrtr $ # Maintainer: Andreas Radke <andyrtr@archlinux.org> pkgname=libetpan -pkgver=1.1 -pkgrel=4 +pkgver=1.2 +pkgrel=1 pkgdesc="A portable middleware for email access" arch=('i686' 'x86_64') -url="http://www.etpan.org/" +url="http://www.etpan.org/libetpan.html" license=("custom:etpan") depends=('libsasl' 'curl' 'expat') -source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz) -md5sums=('6fee60d08506e941642b8fa087e60b07') +source=(https://github.com/dinhviethoa/${pkgname}/archive/${pkgver}.tar.gz) +md5sums=('c15905ebc2ec620afb8bcca7b9d9c232') build() { cd ${pkgname}-${pkgver} + + # generate automake files that are not included in the tarball + libtoolize --force --copy + aclocal -I m4 + autoheader + autoconf + automake --add-missing --foreign --force --copy + #autoreconf -vfi + ./configure --prefix=/usr \ --disable-static \ --disable-db |