blob: 3c4e298ceeb250a92c946ed80b3ba07c83d3c498 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# $Id: PKGBUILD 205522 2014-02-06 16:23:03Z andyrtr $
# Maintainer: Andreas Radke <andyrtr@archlinux.org>
pkgname=libetpan
pkgver=1.2
pkgrel=1
pkgdesc="A portable middleware for email access"
arch=('i686' 'x86_64')
url="http://www.etpan.org/libetpan.html"
license=("custom:etpan")
depends=('libsasl' 'curl' 'expat')
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
make
}
package() {
cd ${pkgname}-${pkgver}
make DESTDIR=${pkgdir} install
install -Dm644 COPYRIGHT ${pkgdir}/usr/share/licenses/$pkgname/license.txt
}
|