blob: 1c5b58c759bf8304b9e50bcf06b21b18dfa544eb (
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
|
# 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.22.r11.58e78a3
_commit=${version##*.}
release=3
source=("http://repo.or.cz/alpine.git/snapshot/${_commit}.tar.gz"
rules.patch
topal-patch.patch)
build() {
cd "alpine-${_commit}"
patch -p1 -i "${SRC}/topal-patch.patch"
patch -p1 -i "${SRC}/rules.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
}
|