blob: 51fa5f3eda0b1350f0a8f847b88ad5405ca5298b (
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
|
# Description: Apache licensed PINE mail user agent
# URL: http://alpine.freeiz.com
# Maintainer: Erich Eckner, crux at eckner dot net
# Depends on: libldap krb5 gettext procmail
name=alpine
version=2.21.9999.r67.d8d2ee5
_commit=${version##*.}
release=2
source=("http://repo.or.cz/alpine.git/snapshot/${_commit}.tar.gz"
topal-patch.patch)
build() {
cd "alpine-${_commit}"
patch -p1 -i "${SRC}/topal-patch.patch"
./configure \
--prefix=/usr \
--with-passfile=.pine-passfile \
--with-system-pinerc=/etc/${name}.d/pine.conf \
--with-system-fixed-pinerc=/etc/${name}.d/pine.conf.fixed
make
make DESTDIR=$PKG install
}
|